CodeStatementCollection.IndexOf(CodeStatement) Metoda
Definicja
Ważne
Niektóre informacje odnoszą się do produktu w wersji wstępnej, który może zostać znacząco zmodyfikowany przed wydaniem. Firma Microsoft nie udziela żadnych gwarancji, jawnych lub domniemanych, w odniesieniu do informacji podanych w tym miejscu.
Pobiera indeks określonego CodeStatement obiektu w obiekcie CodeStatementCollection, jeśli istnieje w kolekcji.
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
Parametry
- value
- CodeStatement
Element CodeStatement do zlokalizowania w kolekcji.
Zwraca
Indeks określonego obiektu, jeśli zostanie znaleziony, w kolekcji; w przeciwnym razie, -1.
Przykłady
Poniższy przykład wyszukuje obecność określonego CodeStatement elementu i używa IndexOf metody w celu pobrania wartości indeksu, przy której została znaleziona.
// 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