Udostępnij za pośrednictwem


ServiceDescriptionFormatExtensionCollection.IndexOf(Object) Metoda

Definicja

Wyszukuje określony ServiceDescriptionFormatExtension element i zwraca zerowy indeks pierwszego wystąpienia z kolekcją.

public:
 int IndexOf(System::Object ^ extension);
public int IndexOf (object extension);
member this.IndexOf : obj -> int
Public Function IndexOf (extension As Object) As Integer

Parametry

extension
Object

Element ServiceDescriptionFormatExtension , dla którego ma być wyszukiwany w kolekcji.

Zwraca

Int32

Indeks oparty na zera określonej wartości ServiceDescriptionFormatExtensionlub -1, jeśli element nie został znaleziony w kolekcji.

Przykłady

// Get index of a 'myFormatExtension' object in collection.
Console::WriteLine( "Index of 'myFormatExtensionObject' is {0} in collection.", myCollection->IndexOf( myFormatExtensionObject ) );
// Get index of a 'myFormatExtension' object in collection.
Console.WriteLine("Index of 'myFormatExtensionObject' is "+
   "{0} in collection.",
   myCollection.IndexOf(myFormatExtensionObject).ToString());
' Get index of a 'myFormatExtension' object in collection.
Console.WriteLine("Index of 'myFormatExtensionObject' is " + _
     "{0} in collection.", myCollection.IndexOf(myFormatExtensionObject).ToString())

Dotyczy