AjScript.Commands.IfCommand.IfCommand C# (CSharp) Method

IfCommand() public method

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