共用方式為


ClientTargetCollection.RemoveAt(Int32) 方法

定義

移除具有指定集合索引的 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 集合索引。

範例

下列程式碼範例會 ClientTargetClientTargetCollection 集合中移除 物件。

如需如何取得集合的詳細資訊,請參閱類別概觀中的 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

備註

方法 RemoveAtadd 刪除目前階層層級區段中的專案 clientTarget ,並插入 remove 專案。 元素 remove 可有效地移除階層中較高層級上父組態檔中定義的元素參考 add ,但不會刪除它。

適用於

另請參閱