NamespaceCollection.RemoveAt(Int32) 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
移除集合中指定索引處的 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 物件的索引。
例外狀況
範例
下列程式碼範例示範如何使用 RemoveAt 方法。 此程式碼範例是針對 類別提供的較大範例的 PagesSection 一部分。
// Execute the RemoveAt method.
pagesSection.Namespaces.RemoveAt(0);
' Execute the RemoveAt method.
pagesSection.Namespaces.RemoveAt(0)
備註
如果指定的專案是在較高層級的組態檔中定義,這個方法會將專案插入 remove
目前應用程式層級之組態檔的適當區段中。 如果元素是在目前的組態檔中定義,則會從組態檔中移除其專案。 要移除的物件必須存在於集合中;如果不是, ConfigurationException 則會擲回 。