Aracılığıyla paylaş


CodeNamespaceCollection.IndexOf(CodeNamespace) Yöntem

Tanım

koleksiyonda varsa içinde belirtilen CodeNamespace nesnenin CodeNamespaceCollectiondizinini alır.

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

Parametreler

value
CodeNamespace

öğesini CodeNamespace bulun.

Döndürülenler

Belirtilen CodeNamespacedizininde bulunursa koleksiyonda; aksi takdirde -1.

Örnekler

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

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

Şunlara uygulanır

Ayrıca bkz.