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