NamespaceCollection.RemoveAt(Int32) 方法

定义

从集合中移除指定索引处的 ProfileGroupSettings 对象。

public:
 void RemoveAt(int index);
public void RemoveAt (int index);
member this.RemoveAt : int -> unit
Public Sub RemoveAt (index As Integer)

参数

index
Int32

要从集合中移除的 NamespaceInfo 对象的索引。

例外

集合中的指定索引处不存在 NamespaceInfo 对象。

  • 或 - 该元素已移除。

  • 或 - 该集合是只读的。

示例

下面的代码示例说明如何使用 RemoveAt 方法。 此代码示例是为类提供的大型示例的 PagesSection 一部分。

// Execute the RemoveAt method.
pagesSection.Namespaces.RemoveAt(0);
' Execute the RemoveAt method.
pagesSection.Namespaces.RemoveAt(0)

注解

如果在较高级别的配置文件中定义了指定的元素,此方法会将元素 remove 插入到当前应用程序级别的配置文件的相应节中。 如果元素在当前配置文件中定义,则会从配置文件中删除其条目。 要删除的对象必须存在于集合中;如果不是,则会引发 a ConfigurationException

适用于

另请参阅