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

CatchClause() public méthode

public CatchClause ( ICSharpCode.NRefactory.Ast.Statement statementBlock ) : System
statementBlock ICSharpCode.NRefactory.Ast.Statement
Résultat System
        public CatchClause(Statement statementBlock)
        {
            StatementBlock = statementBlock;
            typeReference = TypeReference.Null;
            variableName = "";
            condition = Expression.Null;
        }

Same methods

CatchClause::CatchClause ( ICSharpCode.NRefactory.Ast.TypeReference typeReference, string variableName, ICSharpCode.NRefactory.Ast.Statement statementBlock ) : System
CatchClause::CatchClause ( ICSharpCode.NRefactory.Ast.TypeReference typeReference, string variableName, ICSharpCode.NRefactory.Ast.Statement statementBlock, ICSharpCode.NRefactory.Ast.Expression condition ) : System