Udostępnij za pośrednictwem


CodeStatementCollection.Contains(CodeStatement) Metoda

Definicja

Pobiera wartość wskazującą, czy kolekcja zawiera określony CodeStatement obiekt.

public:
 bool Contains(System::CodeDom::CodeStatement ^ value);
public bool Contains (System.CodeDom.CodeStatement value);
member this.Contains : System.CodeDom.CodeStatement -> bool
Public Function Contains (value As CodeStatement) As Boolean

Parametry

value
CodeStatement

Obiekt CodeStatement do wyszukania w kolekcji.

Zwraca

true jeśli kolekcja zawiera określony obiekt; w przeciwnym razie , false.

Przykłady

W poniższym przykładzie Contains użyto metody , aby wyszukać obecność określonego CodeStatement elementu i pobrać wartość indeksu, w 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

Dotyczy

Zobacz też