Mono Class Library: System.CodeDom.CodeNamespace Overview | MembersSystem.CodeDom.CodeNamespace.Types Property |
Collection of CodeDom types that resides inside the namespace. [Edit]
|
Documentation for this section has not yet been entered. [Edit]
This is a collection of System.CodeDom.CodeTypeDeclarations that reside inside the Namespace.[Edit]
C# Example // This example creates a Mono.CodeDomDemo namespace and adds a new class 'Hello' to it. ... // Create Hello class CodeTypeDeclaration helloClass=new CodeTypeDeclaration("Hello"); helloClass.IsClass=true; ... CodeNamespace testNs= new CodeNamespace("Mono.CodeDomDemo"); testNs.Types.Add(helloClass);
Namespace: System.CodeDom
Assembly: System (in System.dll)
Assembly Versions: 1.0.5000.0, 2.0.0.0