CodeCatchClauseCollection.IndexOf(CodeCatchClause) Methode
Definition
Wichtig
Einige Informationen beziehen sich auf Vorabversionen, die vor dem Release ggf. grundlegend überarbeitet werden. Microsoft übernimmt hinsichtlich der hier bereitgestellten Informationen keine Gewährleistungen, seien sie ausdrücklich oder konkludent.
Ruft den Index des angegebenen CodeCatchClause-Objekts in der Auflistung ab, sofern es in der Auflistung vorhanden ist.
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
Parameter
- value
- CodeCatchClause
Das CodeCatchClause-Objekt, das in der Auflistung gesucht werden soll.
Gibt zurück
Der Index des angegebenen Objekts in der Auflistung, sofern gefunden, andernfalls -1.
Beispiele
Das folgende Beispiel sucht nach dem Vorhandensein eines bestimmten CodeCatchClause Objekts und verwendet die IndexOf -Methode, um den Indexwert abzurufen, bei dem es gefunden wurde.
// 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