ArkaliaCore.Game.Game.Commands.CommandParameters.GetBoolParameter C# (CSharp) Méthode

GetBoolParameter() public méthode

public GetBoolParameter ( int index ) : bool
index int
Résultat bool
        public bool GetBoolParameter(int index)
        {
            return bool.Parse(this._parameters[index]);
        }