XSharp.CodeDom.XSharpCodeGenerator.GenerateNamespace C# (CSharp) Méthode

GenerateNamespace() protected méthode

protected GenerateNamespace ( CodeNamespace e ) : void
e System.CodeDom.CodeNamespace
Résultat void
        protected override void GenerateNamespace(CodeNamespace e)
        {
            this.GenerateCommentStatements(e.Comments);
            // Generate Imports BEFORE the NameSpace
            this.GenerateNamespaceImports(e);
            //this.Output.WriteLine("");
            //
            this.GenerateNamespaceStart(e);
            //this.Output.WriteLine("");
            this.GenerateTypes(e);
            this.GenerateNamespaceEnd(e);
        }
XSharpCodeGenerator