WebSocketServer.CardServer.CardServer C# (CSharp) Метод

CardServer() публичный Метод

Initializes a new instance of the CardServer class, with the specified admin password.
public CardServer ( string adminPass ) : System.Collections.Generic
adminPass string The admin password for this game.
Результат System.Collections.Generic
        public CardServer(string adminPass)
        {
            Clients = new List<Client>();
            Admins = new List<Client>();
            Rounds = new List<Round>();
            AdminPassword = adminPass;
            Settings = new Dictionary<string, string>();
        }