Udostępnij za pośrednictwem


CodeCatchClauseCollection.Contains(CodeCatchClause) Metoda

Definicja

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

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

Parametry

value
CodeCatchClause

Obiekt CodeCatchClause do zlokalizowania 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 CodeCatchClause wystąpienia i uzyskać wartość indeksu, w której została znaleziona.

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

Dotyczy

Zobacz też