AjScript.Commands.IfCommand.IfCommand C# (CSharp) Méthode

IfCommand() public méthode

public IfCommand ( IExpression condition, ICommand thenCommand, ICommand elseCommand = null ) : System
condition IExpression
thenCommand ICommand
elseCommand ICommand
Résultat System
        public IfCommand(IExpression condition, ICommand thenCommand, ICommand elseCommand = null)
        {
            this.condition = condition;
            this.thenCommand = thenCommand;
            this.elseCommand = elseCommand;
        }