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 对象的名称。

返回

Int32

指定的 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"))

适用于

另请参阅