Beispiel #1
0
		public void Remove(Account account)
		{
			Account ignored;
			OnlineUsers.TryRemove(account.GetUsername(), out ignored);
		}
Beispiel #2
0
		public void Add(Account account)
		{
			OnlineUsers.TryAdd(account.GetUsername(), account);
		}