Collection of CodeDom types that resides inside the namespace.
Documentation for this section has not yet been entered.
This is a collection of System.CodeDom.CodeTypeDeclarations that reside inside the Namespace.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