Condividi tramite


ProfileSettingsCollection.IndexOf(String) Metodo

Definizione

Restituisce l'indice dell'oggetto ProfileSettings specificato.

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

Parametri

name
String

Nome di un oggetto ProfileSettings nell'insieme.

Restituisce

Int32

Indice dell'oggetto specificato ProfileSettings, oppure -1 se l'oggetto non viene trovato nell'insieme.

Esempio

Nell'esempio di codice riportato di seguito viene illustrato come utilizzare il metodo IndexOf. Questo esempio di codice fa parte di un esempio più grande fornito per la HealthMonitoringSection classe.

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

Si applica a

Vedi anche