The topic you requested is included in another documentation set. For convenience, it's displayed below. Choose Switch to see the topic in its original location.
CodeParameterDeclarationExpressionCollection::IndexOf Method (CodeParameterDeclarationExpression^)
.NET Framework (current version)
Gets the index in the collection of the specified CodeParameterDeclarationExpression, if it exists in the collection.
Assembly: System (in System.dll)
Parameters
- value
-
Type:
System.CodeDom::CodeParameterDeclarationExpression^
The CodeParameterDeclarationExpression to locate in the collection.
Return Value
Type: System::Int32The index in the collection of the specified object, if found; otherwise, -1.
The following example searches for the presence of a specific CodeParameterDeclarationExpression instance and uses the IndexOf method to get the index value at which it was found.
// Tests for the presence of a CodeParameterDeclarationExpression // in the collection, and retrieves its index if it is found. CodeParameterDeclarationExpression^ testParameter = gcnew CodeParameterDeclarationExpression( int::typeid,"testIntArgument" ); int itemIndex = -1; if ( collection->Contains( testParameter ) ) itemIndex = collection->IndexOf( testParameter );
.NET Framework
Available since 1.1
Available since 1.1
Show: