ICSharpCode.NRefactory.Ast.IfElseStatement.IfElseStatement C# (CSharp) Method

IfElseStatement() public method

public IfElseStatement ( ICSharpCode.NRefactory.Ast.Expression condition ) : System
condition ICSharpCode.NRefactory.Ast.Expression
return System
        public IfElseStatement(Expression condition)
        {
            Condition = condition;
            trueStatement = new List<Statement>();
            falseStatement = new List<Statement>();
            elseIfSections = new List<ElseIfSection>();
        }

Same methods

IfElseStatement::IfElseStatement ( ICSharpCode.NRefactory.Ast.Expression condition, ICSharpCode.NRefactory.Ast.Statement trueStatement ) : System
IfElseStatement::IfElseStatement ( ICSharpCode.NRefactory.Ast.Expression condition, ICSharpCode.NRefactory.Ast.Statement trueStatement, ICSharpCode.NRefactory.Ast.Statement falseStatement ) : System