CodeTypeDeclarationCollection.IndexOf(CodeTypeDeclaration) Yöntem
Tanım
Önemli
Bazı bilgiler ürünün ön sürümüyle ilgilidir ve sürüm öncesinde önemli değişiklikler yapılmış olabilir. Burada verilen bilgilerle ilgili olarak Microsoft açık veya zımni hiçbir garanti vermez.
koleksiyonda varsa içinde belirtilen CodeTypeDeclaration nesnenin CodeTypeDeclarationCollectiondizinini alır.
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
Parametreler
- value
- CodeTypeDeclaration
CodeTypeDeclaration koleksiyonunda bulun.
Döndürülenler
Belirtilen nesnenin dizini( bulunursa) koleksiyonda; aksi takdirde, -1.
Örnekler
Aşağıdaki örnek, bir CodeTypeDeclarationCollection nesneden girdileri CodeTypeDeclaration alır ve yöntemleri tarafından IndexOf döndürülen adlarını ve dizinlerini görüntüler.
// Tests for the presence of a CodeTypeDeclaration in the
// collection, and retrieves its index if it is found.
CodeTypeDeclaration^ testDeclaration = gcnew 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.
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