Exemplo n.º 1
0
 public bool RemoveUser(User user)
 {
     return this.users.TryRemove(user.ID, out user);
 }
Exemplo n.º 2
0
 public User AddUser(string name)
 {
     User user = new User(name, this);
     bool result = this.users.TryAdd(user.ID, user);
     return user;
 }