public Fox FindFoxByName(string name) { CurrentFox = ListOfFoxes.Find(f => f.Name == name); return(CurrentFox); }
public Fox SetCurrentFox(string name) { CurrentFox = ListOfFoxes.First(fox => name == fox.Name); return(CurrentFox); }
public List <Fox> AddFox(Fox fox) { ListOfFoxes.Add(fox); return(ListOfFoxes); }