ClientTargetCollection.RemoveAt(Int32) 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
移除具有指定集合索引的 ClientTarget 物件。
public:
void RemoveAt(int index);
public void RemoveAt (int index);
member this.RemoveAt : int -> unit
Public Sub RemoveAt (index As Integer)
參數
- index
- Int32
要移除的 ClientTarget 集合索引。
範例
下列程式碼範例會 ClientTarget 從 ClientTargetCollection 集合中移除 物件。
如需如何取得集合的詳細資訊,請參閱類別概觀中的 ClientTargetCollection 程式碼範例。
// Remove the client target at the
// specified index from the collection.
clientTargets.RemoveAt(0);
// Update the configuration file.
if (!clientTargetSection.IsReadOnly())
configuration.Save();
' Remove the client target at the
' specified index from the collection.
clientTargets.RemoveAt(0)
' Update the configuration file.
If Not clientTargetSection.IsReadOnly() Then
configuration.Save()
End If
備註
方法 RemoveAt 會 add
刪除目前階層層級區段中的專案 clientTarget
,並插入 remove
專案。 元素 remove
可有效地移除階層中較高層級上父組態檔中定義的元素參考 add
,但不會刪除它。