CodeExpressionCollection.IndexOf(CodeExpression) Método

Definição

Obtém o índice do objeto CodeExpression especificado na coleção, se ele existe na coleção.

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

Parâmetros

value
CodeExpression

O objeto CodeExpression a ser localizado na coleção.

Retornos

O índice do objeto especificado, se encontrado, na coleção; caso contrário, -1.

Exemplos

O exemplo a seguir pesquisa a presença de um objeto específico CodeExpression e usa o IndexOf método para obter o valor de índice no qual ele foi encontrado.

// Tests for the presence of a CodeExpression in the 
// collection, and retrieves its index if it is found.
CodeExpression^ testComment = gcnew CodePrimitiveExpression( true );
int itemIndex = -1;
if ( collection->Contains( testComment ) )
   itemIndex = collection->IndexOf( testComment );
// Tests for the presence of a CodeExpression in the
// collection, and retrieves its index if it is found.
CodeExpression testComment = new CodePrimitiveExpression(true);
int itemIndex = -1;
if( collection.Contains( testComment ) )
    itemIndex = collection.IndexOf( testComment );
' Tests for the presence of a CodeExpression in the 
' collection, and retrieves its index if it is found.
Dim testComment = New CodePrimitiveExpression(True)
Dim itemIndex As Integer = -1
If collection.Contains(testComment) Then
    itemIndex = collection.IndexOf(testComment)
End If

Aplica-se a

Confira também