CodeTypeReferenceCollection::IndexOf Method (CodeTypeReference^)

 

Gets the index in the collection of the specified CodeTypeReference, if it exists in the collection.

Namespace:   System.CodeDom
Assembly:  System (in System.dll)

public:
int IndexOf(
	CodeTypeReference^ value
)

Parameters

value
Type: System.CodeDom::CodeTypeReference^

The CodeTypeReference to locate in the collection.

Return Value

Type: System::Int32

The 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
Return to top
Show: