AjScript.Commands.IfCommand.IfCommand C# (CSharp) 메소드

IfCommand() 공개 메소드

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