Udostępnij za pośrednictwem


CodeNamespaceCollection.IndexOf(CodeNamespace) Metoda

Definicja

Pobiera indeks określonego CodeNamespace obiektu w obiekcie CodeNamespaceCollection, jeśli istnieje w kolekcji.

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

Parametry

value
CodeNamespace

Element CodeNamespace do zlokalizowania.

Zwraca

Indeks określonego CodeNamespaceobiektu , jeśli zostanie znaleziony, w kolekcji; w przeciwnym razie -1.

Przykłady

Poniższy przykład wyszukuje obecność określonego CodeNamespace elementu i używa IndexOf metody w celu pobrania wartości indeksu, przy której została znaleziona.

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

Dotyczy

Zobacz też