CodeNamespaceImport Class
Represents a namespace import directive that indicates a namespace to use.
Assembly: System (in System.dll)
CodeNamespaceImport can be used to represent a namespace import directive.
In most languages, a namespace import directive causes visibility of the types within the imported namespaces to code that references types in the imported namespaces.
Note: |
|---|
Use fully qualified type references to avoid potential ambiguity. |
The following example code demonstrates use of a CodeNamespaceImport to import the CodeNamespaceImport namespace:
' Declares a compile unit to contain a namespace. Dim compileUnit As New CodeCompileUnit() ' Declares a namespace named TestNamespace. Dim testNamespace As New CodeNamespace("TestNamespace") ' Adds the namespace to the namespace collection of the compile unit. compileUnit.Namespaces.Add(testNamespace) ' Declares a namespace import of the System namespace. Dim import1 As New CodeNamespaceImport("System") ' Adds the namespace import to the namespace imports collection of the namespace. testNamespace.Imports.Add(import1) ' A Visual Basic code generator produces the following source code for the preceeding example code: 'Option Strict Off 'Option Explicit On ' 'Imports System ' 'Namespace TestNamespace 'End Namespace
Windows 7, Windows Vista, Windows XP SP2, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP Starter Edition, Windows Server 2008 R2, Windows Server 2008, Windows Server 2003, Windows Server 2000 SP4, Windows Millennium Edition, Windows 98
The .NET Framework and .NET Compact Framework do not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.
Note: