Beispiel #1
0
        public void EditExisting(Person current)
        {
            int i = oc.IndexOf(current);

            Oc.Remove(current);
            Person p = opera.AddPerson(new string[] { Surname, Name }, new int[] { Age, Weight });

            Oc.Insert(i, p);
            currentPerson = null;
        }