CodeNamespaceImportCollection Class
Represents a collection of CodeNamespaceImport objects.
Assembly: System (in System.dll)
The CodeNamespaceImportCollection class provides a simple collection object that can be used to store a set of CodeNamespaceImport objects.
The following example demonstrates some of the members of the CodeNamespaceImportCollection class. The example initializes a new instance of the class, adds CodeNamespaceImport objects to it, and gets the total number of objects in the collection.
' Creates an empty CodeNamespaceImportCollection. Dim collection As New CodeNamespaceImportCollection() ' Adds a CodeNamespaceImport to the collection. collection.Add(New CodeNamespaceImport("System")) ' Adds an array of CodeNamespaceImport objects to the collection. Dim [Imports] As CodeNamespaceImport() = _ {New CodeNamespaceImport("System"), _ New CodeNamespaceImport("System.Drawing")} collection.AddRange([Imports]) ' Retrieves the count of the items in the collection. Dim collectionCount As Integer = collection.Count
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.