Descent.Messaging.Events.PlayersInGameEventArgs.PlayersInGameEventArgs C# (CSharp) Метод

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

public PlayersInGameEventArgs ( PlayerInGame playersIngame ) : System.Diagnostics.Contracts
playersIngame PlayerInGame
Результат System.Diagnostics.Contracts
        public PlayersInGameEventArgs(PlayerInGame[] playersIngame)
        {
            Contract.Requires(playersIngame != null);
            Contract.Requires(playersIngame.Length > 0);

            NumberOfPlayers = playersIngame.Length;
            Players = playersIngame;
        }

Same methods

PlayersInGameEventArgs::PlayersInGameEventArgs ( string stringArgs ) : System.Diagnostics.Contracts