System.CodeDom.Compiler.CodeGenerator.GenerateTryCatchFinallyStatement C# (CSharp) Method

GenerateTryCatchFinallyStatement() protected abstract method

protected abstract GenerateTryCatchFinallyStatement ( CodeTryCatchFinallyStatement e ) : void
e CodeTryCatchFinallyStatement
return void
        protected abstract void GenerateTryCatchFinallyStatement(CodeTryCatchFinallyStatement e);
        protected abstract void GenerateAssignStatement(CodeAssignStatement e);

Usage Example

Esempio n. 1
0
 public void Visit(CodeTryCatchFinallyStatement o)
 {
     g.GenerateTryCatchFinallyStatement(o);
 }
CodeGenerator