ICSharpCode.NRefactory.Ast.SwitchStatement.SwitchStatement C# (CSharp) Méthode

SwitchStatement() public méthode

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