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

GenerateIterationStatement() protected abstract method

protected abstract GenerateIterationStatement ( CodeIterationStatement e ) : void
e CodeIterationStatement
return void
        protected abstract void GenerateIterationStatement(CodeIterationStatement e);
        protected abstract void GenerateThrowExceptionStatement(CodeThrowExceptionStatement e);

Usage Example

示例#1
0
 public void Visit(CodeIterationStatement o)
 {
     g.GenerateIterationStatement(o);
 }
CodeGenerator