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

SwitchStatement() public method

public SwitchStatement ( ICSharpCode.NRefactory.Ast.Expression switchExpression, List switchSections ) : System
switchExpression ICSharpCode.NRefactory.Ast.Expression
switchSections List
return System
        public SwitchStatement(Expression switchExpression, List<SwitchSection> switchSections)
        {
            SwitchExpression = switchExpression;
            SwitchSections = switchSections;
        }