共用方式為


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 目前應用程式層級之組態檔的適當區段中。 如果元素是在目前的組態檔中定義,則會從組態檔中移除其專案。 要移除的物件必須存在於集合中;如果不是, ConfigurationException 則會擲回 。

適用於

另請參閱