CodeTypeReferenceCollection::IndexOf Method (CodeTypeReference^)
.NET Framework (current version)
Gets the index in the collection of the specified CodeTypeReference, if it exists in the collection.
Assembly: System (in System.dll)
Parameters
- value
-
Type:
System.CodeDom::CodeTypeReference^
The CodeTypeReference to locate in the collection.
Return Value
Type: System::Int32The index of the specified CodeTypeReference in the collection if found; otherwise, -1.
// Tests for the presence of a CodeTypeReference in the // collection, and retrieves its index if it is found. CodeTypeReference^ testReference = gcnew CodeTypeReference( bool::typeid ); int itemIndex = -1; if ( collection->Contains( testReference ) ) itemIndex = collection->IndexOf( testReference );
.NET Framework
Available since 1.1
Available since 1.1
Show: