Sdílet prostřednictvím


ProfileSettingsCollection.IndexOf(String) Metoda

Definice

Vrátí index zadaného ProfileSettings objektu.

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

Název objektu ProfileSettings v kolekci.

Návraty

Index zadaného ProfileSettings objektu nebo -1, pokud objekt není nalezen v kolekci.

Příklady

Následující příklad kódu ukazuje, jak použít metodu IndexOf . Tento příklad kódu je součástí většího příkladu HealthMonitoringSection pro třídu .

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

Platí pro

Viz také