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
부모 구성에 정의 된 요소 파일 계층 구조에서 상위 수준에 있지만 삭제 하지 않습니다.