CodeExpressionCollection.IndexOf(CodeExpression) Méthode

Définition

Obtient l'index de l'objet CodeExpression spécifié dans la collection, s'il existe dans la collection.

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

Paramètres

value
CodeExpression

Objet CodeExpression à placer dans la collection.

Retours

Index de l'objet spécifié, s'il existe, dans la collection ; sinon, -1.

Exemples

L’exemple suivant recherche la présence d’un objet spécifique CodeExpression et utilise la IndexOf méthode pour obtenir la valeur d’index à laquelle il a été trouvé.

// 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

S’applique à

Voir aussi