This topic has not yet been rated - Rate this topic

CodeNamespaceImportCollection Class

Represents a collection of CodeNamespaceImport objects.

System.Object
  System.CodeDom.CodeNamespaceImportCollection

Namespace:  System.CodeDom
Assembly:  System (in System.dll)
[SerializableAttribute]
[ClassInterfaceAttribute(ClassInterfaceType.AutoDispatch)]
[ComVisibleAttribute(true)]
public class CodeNamespaceImportCollection : IList, 
	ICollection, IEnumerable

The CodeNamespaceImportCollection type exposes the following members.

  Name Description
Public method CodeNamespaceImportCollection Initializes a new instance of the CodeNamespaceImportCollection class.
Top
  Name Description
Public property Count Gets the number of namespaces in the collection.
Public property Item Gets or sets the CodeNamespaceImport object at the specified index in the collection.
Top
  Name Description
Public method Add Adds a CodeNamespaceImport object to the collection.
Public method AddRange Adds a set of CodeNamespaceImport objects to the collection.
Public method Clear Clears the collection of members.
Public method Equals(Object) Determines whether the specified Object is equal to the current Object. (Inherited from Object.)
Protected method Finalize Allows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection. (Inherited from Object.)
Public method GetEnumerator Gets an enumerator that enumerates the collection members.
Public method GetHashCode Serves as a hash function for a particular type. (Inherited from Object.)
Public method GetType Gets the Type of the current instance. (Inherited from Object.)
Protected method MemberwiseClone Creates a shallow copy of the current Object. (Inherited from Object.)
Public method ToString Returns a string that represents the current object. (Inherited from Object.)
Top
  Name Description
Public Extension Method AsParallel Enables parallelization of a query. (Defined by ParallelEnumerable.)
Public Extension Method AsQueryable Converts an IEnumerable to an IQueryable. (Defined by Queryable.)
Public Extension Method Cast<TResult> Converts the elements of an IEnumerable to the specified type. (Defined by Enumerable.)
Public Extension Method OfType<TResult> Filters the elements of an IEnumerable based on a specified type. (Defined by Enumerable.)
Top
  Name Description
Explicit interface implemetation Private method ICollection.CopyTo Infrastructure. Copies the elements of the ICollection to an Array, starting at a particular Array index.
Explicit interface implemetation Private property ICollection.Count Infrastructure. Gets the number of elements contained in the ICollection.
Explicit interface implemetation Private property ICollection.IsSynchronized Infrastructure. Gets a value indicating whether access to the ICollection is synchronized (thread safe).
Explicit interface implemetation Private property ICollection.SyncRoot Gets an object that can be used to synchronize access to the ICollection.
Explicit interface implemetation Private method IEnumerable.GetEnumerator Infrastructure. Returns an enumerator that can iterate through a collection.
Explicit interface implemetation Private method IList.Add Infrastructure. Adds an object to the IList.
Explicit interface implemetation Private method IList.Clear Infrastructure. Removes all items from the IList.
Explicit interface implemetation Private method IList.Contains Infrastructure. Determines whether the IList contains a specific value.
Explicit interface implemetation Private method IList.IndexOf Infrastructure. Determines the index of a specific item in the IList.
Explicit interface implemetation Private method IList.Insert Infrastructure. Inserts an item in the IList at the specified position.
Explicit interface implemetation Private property IList.IsFixedSize Infrastructure. Gets a value indicating whether the IList has a fixed size.
Explicit interface implemetation Private property IList.IsReadOnly Infrastructure. Gets a value indicating whether the IList is read-only.
Explicit interface implemetation Private property IList.Item Infrastructure. Gets or sets the element at the specified index.
Explicit interface implemetation Private method IList.Remove Infrastructure. Removes the first occurrence of a specific object from the IList.
Explicit interface implemetation Private method IList.RemoveAt Infrastructure. Removes the element at the specified index of the IList.
Top

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.
CodeNamespaceImportCollection collection = 
    new CodeNamespaceImportCollection();            			

// Adds a CodeNamespaceImport to the collection.
collection.Add( new CodeNamespaceImport("System") );

// Adds an array of CodeNamespaceImport objects to the collection.
CodeNamespaceImport[] Imports = { 
        new CodeNamespaceImport("System"),
        new CodeNamespaceImport("System.Drawing") };
collection.AddRange( Imports );

// Retrieves the count of the items in the collection.
int collectionCount = collection.Count;


.NET Framework

Supported in: 4, 3.5, 3.0, 2.0, 1.1, 1.0

.NET Framework Client Profile

Supported in: 4, 3.5 SP1

Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows XP SP2 x64 Edition, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.
Any public static (Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.
Did you find this helpful?
(1500 characters remaining)
Community Content Add
Annotations FAQ