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