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

GenerateStatements() protected method

protected GenerateStatements ( CodeStatementCollection stmts ) : void
stmts CodeStatementCollection
return void
        protected void GenerateStatements(CodeStatementCollection stmts)
        {
            foreach (CodeStatement stmt in stmts)
            {
                ((ICodeGenerator)this).GenerateCodeFromStatement(stmt, _output.InnerWriter, _options);
            }
        }
CodeGenerator