Windows apps
Collapse the table of content
Expand the table of content
Information
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.

CodeStatementCollection::IndexOf Method (CodeStatement^)

 

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

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

public:
int IndexOf(
	CodeStatement^ value
)

Parameters

value
Type: System.CodeDom::CodeStatement^

The CodeStatement to locate in the collection.

Return Value

Type: System::Int32

The index of the specified object, if it is found, in the collection; otherwise, -1.

The following example searches for the presence of a specific CodeStatement and uses the IndexOf method to retrieve the index value at which it was found.

// Tests for the presence of a CodeStatement in the 
// collection, and retrieves its index if it is found.
int itemIndex = -1;
if ( collection->Contains( testStatement ) )
   itemIndex = collection->IndexOf( testStatement );

.NET Framework
Available since 1.1
Return to top
Show:
© 2017 Microsoft