Beispiel #1
0
 public string getRef(Player p)
 {
     var key = this.dictionary.FirstOrDefault(x => x.Value == p);
     return key.Key;
 }
Beispiel #2
0
 public void Add(string key, Player val)
 {
     this.dictionary.Add(key, val);
 }