Aracılığıyla paylaş


CodeCatchClauseCollection.IndexOf(CodeCatchClause) Yöntem

Tanım

Koleksiyonda varsa, koleksiyonda belirtilen CodeCatchClause nesnenin dizinini alır.

public:
 int IndexOf(System::CodeDom::CodeCatchClause ^ value);
public int IndexOf (System.CodeDom.CodeCatchClause value);
member this.IndexOf : System.CodeDom.CodeCatchClause -> int
Public Function IndexOf (value As CodeCatchClause) As Integer

Parametreler

value
CodeCatchClause

CodeCatchClause Koleksiyonda bulunacak nesne.

Döndürülenler

Belirtilen nesnenin dizini ( bulunursa) koleksiyonda; aksi takdirde, -1.

Örnekler

Aşağıdaki örnek, belirli CodeCatchClause bir nesnenin varlığını arar ve bulunduğu dizin değerini almak için yöntemini kullanır IndexOf .

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