Aracılığıyla paylaş


CodeCatchClauseCollection.Contains(CodeCatchClause) Yöntem

Tanım

Koleksiyonun belirtilen CodeCatchClause nesneyi içerip içermediğini gösteren bir değer alır.

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

Parametreler

value
CodeCatchClause

CodeCatchClause Koleksiyonda bulunacak nesne.

Döndürülenler

true koleksiyon belirtilen nesneyi içeriyorsa; aksi takdirde , false.

Örnekler

Aşağıdaki örnek, belirli CodeCatchClause bir örneğin varlığını aramak için yöntemini kullanır Contains ve bulunduğu dizin değerini alır.

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

Şunlara uygulanır

Ayrıca bkz.