System.CodeDom.Compiler.CodeGenerator.GenerateThrowExceptionStatement C# (CSharp) Méthode

GenerateThrowExceptionStatement() protected abstract méthode

protected abstract GenerateThrowExceptionStatement ( CodeThrowExceptionStatement e ) : void
e CodeThrowExceptionStatement
Résultat void
        protected abstract void GenerateThrowExceptionStatement(CodeThrowExceptionStatement e);
        protected virtual void GenerateCommentStatement(CodeCommentStatement e)

Usage Example

Exemple #1
0
 public void Visit(CodeThrowExceptionStatement o)
 {
     g.GenerateThrowExceptionStatement(o);
 }
CodeGenerator