Udostępnij za pośrednictwem


ProfileSettingsCollection.IndexOf(String) Metoda

Definicja

Zwraca indeks określonego ProfileSettings obiektu.

public:
 int IndexOf(System::String ^ name);
public int IndexOf (string name);
member this.IndexOf : string -> int
Public Function IndexOf (name As String) As Integer

Parametry

name
String

Nazwa ProfileSettings obiektu w kolekcji.

Zwraca

Indeks określonego ProfileSettings obiektu lub -1, jeśli obiekt nie zostanie znaleziony w kolekcji.

Przykłady

W poniższym przykładzie kodu pokazano, jak używać IndexOf metody . Ten przykład kodu jest częścią większego przykładu podanego HealthMonitoringSection dla klasy.

// Get the index of the 'Default' ProfileSettings in the Profiles collection property.
Console.WriteLine("Profiles index for 'Default': {0}.",
    healthMonitoringSection.Profiles.IndexOf("Default"));
' Get the index of the 'Default' ProfileSettings in the Profiles collection property.
Console.WriteLine("Profiles index for 'Default': {0}.", _
    healthMonitoringSection.Profiles.IndexOf("Default"))

Dotyczy

Zobacz też