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