Boo.Lang.Compiler.Ast.IfStatement.IfStatement C# (CSharp) Метод

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

public IfStatement ( Expression condition, Block trueBlock, Block falseBlock ) : System
condition Expression
trueBlock Block
falseBlock Block
Результат System
        public IfStatement(Expression condition, Block trueBlock, Block falseBlock)
            : this(Ast.LexicalInfo.Empty, condition, trueBlock, falseBlock)
        {
        }

Same methods

IfStatement::IfStatement ( ) : System
IfStatement::IfStatement ( LexicalInfo token ) : System
IfStatement::IfStatement ( LexicalInfo token, Expression condition, Block trueBlock, Block falseBlock ) : System
IfStatement