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