CodeTypeDeclarationCollection.IndexOf(CodeTypeDeclaration) Methode

Definition

Ruft den Index des angegebenen CodeTypeDeclaration Objekts im CodeTypeDeclarationCollection, falls es in der Auflistung vorhanden ist.

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

Parameter

value
CodeTypeDeclaration

Der CodeTypeDeclaration zu suchende In der Sammlung.

Gibt zurück

Der Index des angegebenen Objekts, falls es gefunden wird, in der Auflistung; andernfalls -1.

Beispiele

Im folgenden Beispiel werden CodeTypeDeclaration Einträge aus einem CodeTypeDeclarationCollection Objekt abgerufen und deren Namen und Indizes angezeigt, die von der IndexOf Methode zurückgegeben werden.

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

Gilt für:

Weitere Informationen