Edit

Share via


CodeStatementCollection.IndexOf(CodeStatement) Method

Definition

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

C#
public int IndexOf(System.CodeDom.CodeStatement value);

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.

C#
// 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 );

Applies to

See also