Share via


ProfileSettingsCollection.IndexOf(String) 方法

定義

傳回 ProfileSettings 物件指定之索引。

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

參數

name
String

集合中 ProfileSettings 物件的名稱。

傳回

指定的 ProfileSettings 物件之索引;如果集合中找不到物件,則為 -1。

範例

下列程式碼範例示範如何使用 IndexOf 方法。 此程式碼範例是提供給 類別之較大範例的 HealthMonitoringSection 一部分。

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

適用於

另請參閱