Bagikan melalui


CodeAttributeArgumentCollection.IndexOf(CodeAttributeArgument) Metode

Definisi

Mendapatkan indeks objek yang ditentukan CodeAttributeArgument dalam koleksi, jika ada dalam koleksi.

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

Parameter

value
CodeAttributeArgument

Objek CodeAttributeArgument yang akan ditemukan dalam koleksi.

Mengembalikan

Indeks objek yang ditentukan, jika ditemukan, dalam koleksi; jika tidak, -1.

Contoh

Contoh berikut mencari keberadaan objek tertentu CodeAttributeArgument dan menggunakan IndexOf metode untuk mendapatkan nilai indeks tempat objek tersebut ditemukan.

// Tests for the presence of a CodeAttributeArgument 
// within the collection, and retrieves its index if it is found.
CodeAttributeArgument^ testArgument = gcnew CodeAttributeArgument( "Test Boolean Argument",gcnew CodePrimitiveExpression( true ) );
int itemIndex = -1;
if ( collection->Contains( testArgument ) )
   itemIndex = collection->IndexOf( testArgument );
// Tests for the presence of a CodeAttributeArgument
// within the collection, and retrieves its index if it is found.
CodeAttributeArgument testArgument = new CodeAttributeArgument("Test Boolean Argument", new CodePrimitiveExpression(true));
int itemIndex = -1;
if( collection.Contains( testArgument ) )
    itemIndex = collection.IndexOf( testArgument );
' Tests for the presence of a CodeAttributeArgument in 
' the collection, and retrieves its index if it is found.
Dim testArgument As New CodeAttributeArgument("Test Boolean Argument", New CodePrimitiveExpression(True))
Dim itemIndex As Integer = -1
If collection.Contains(testArgument) Then
    itemIndex = collection.IndexOf(testArgument)
End If

Berlaku untuk

Lihat juga