示例#1
0
 public void SetLoggedFox(string name)
 {
     LoggedFox = ListOfFoxes.First(f => name == f.Name);
 }
示例#2
0
 public Fox SetCurrentFox(string name)
 {
     CurrentFox = ListOfFoxes.First(fox => name == fox.Name);
     return(CurrentFox);
 }