CodeTypeMemberCollection::IndexOf Method (CodeTypeMember^)
.NET Framework (current version)
Gets the index in the collection of the specified CodeTypeMember, if it exists in the collection.
Assembly: System (in System.dll)
Parameters
- value
-
Type:
System.CodeDom::CodeTypeMember^
The CodeTypeMember to locate in the collection.
Return Value
Type: System::Int32The index in the collection of the specified object, if found; otherwise, -1.
The following code example searches for the presence of a specific CodeTypeMember object and uses the IndexOf method to retrieve the index value at which it was found.
// Tests for the presence of a CodeTypeMember in the collection, // and retrieves its index if it is found. CodeTypeMember^ testMember = gcnew CodeMemberField( "System.String","TestStringField" ); int itemIndex = -1; if ( collection->Contains( testMember ) ) itemIndex = collection->IndexOf( testMember );
.NET Framework
Available since 1.1
Available since 1.1
Show: