CodeTypeReferenceCollection Class
.NET Framework 3.5
Represents a collection of CodeTypeReference objects.
Assembly: System (in System.dll)
The CodeTypeReferenceCollection class provides a simple collection object that can be used to store a set of CodeTypeReference objects.
// Creates an empty CodeTypeReferenceCollection. CodeTypeReferenceCollection collection = new CodeTypeReferenceCollection(); // Adds a CodeTypeReference to the collection. collection.Add( new CodeTypeReference(typeof(bool)) ); // Adds an array of CodeTypeReference objects to the collection. CodeTypeReference[] references = { new CodeTypeReference(typeof(bool)), new CodeTypeReference(typeof(bool)) }; collection.AddRange( references ); // Adds a collection of CodeTypeReference objects to the collection. CodeTypeReferenceCollection referencesCollection = new CodeTypeReferenceCollection(); referencesCollection.Add( new CodeTypeReference(typeof(bool)) ); referencesCollection.Add( new CodeTypeReference(typeof(bool)) ); collection.AddRange( referencesCollection ); // Tests for the presence of a CodeTypeReference in the // collection, and retrieves its index if it is found. CodeTypeReference testReference = new CodeTypeReference(typeof(bool)); int itemIndex = -1; if( collection.Contains( testReference ) ) itemIndex = collection.IndexOf( testReference ); // Copies the contents of the collection, beginning at index 0, // to the specified CodeTypeReference array. // 'references' is a CodeTypeReference array. collection.CopyTo( references, 0 ); // Retrieves the count of the items in the collection. int collectionCount = collection.Count; // Inserts a CodeTypeReference at index 0 of the collection. collection.Insert( 0, new CodeTypeReference(typeof(bool)) ); // Removes the specified CodeTypeReference from the collection. CodeTypeReference reference = new CodeTypeReference(typeof(bool)); collection.Remove( reference ); // Removes the CodeTypeReference at index 0. collection.RemoveAt(0);
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.