CodeStatementCollection.IndexOf(CodeStatement) Method

Definition

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

public:
 int IndexOf(System::CodeDom::CodeStatement ^ value);
public int IndexOf (System.CodeDom.CodeStatement value);
member this.IndexOf : System.CodeDom.CodeStatement -> int
Public Function IndexOf (value As CodeStatement) As Integer

Parameters

value
CodeStatement

The CodeStatement to locate in the collection.

Returns

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

Examples

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 );
// 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 );
' Tests for the presence of a CodeStatement in the 
' collection, and retrieves its index if it is found.
Dim itemIndex As Integer = -1
If collection.Contains(testStatement) Then
    itemIndex = collection.IndexOf(testStatement)
End If

Applies to

See also