CodeCommentStatementCollection::IndexOf Method (CodeCommentStatement^)

 

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

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

public:
int IndexOf(
	CodeCommentStatement^ value
)

Parameters

value
Type: System.CodeDom::CodeCommentStatement^

The CodeCommentStatement object to locate.

Return Value

Type: System::Int32

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