Exemplo n.º 1
0
 public void Change(Person what, Person whom)
 {
     List.Find(what).Value = whom;
 }
Exemplo n.º 2
0
 public void Insert(Person p) // Inserting element into end of list
 {
     List.AddLast(p);
 }