CommaDelimitedStringCollection.Remove(String) 메서드

정의

컬렉션에서 문자열 요소를 제거합니다.

public:
 void Remove(System::String ^ value);
public void Remove (string value);
override this.Remove : string -> unit
Public Sub Remove (value As String)

매개 변수

value
String

제거할 문자열입니다.

예제

다음 코드 예제에서는 Remove 메서드를 사용하는 방법을 보여 줍니다. 이 코드 예제는에 대해 제공 된 큰 예제의 일부는 CommaDelimitedStringCollection 클래스 개요입니다.

// Remove an element of the collection.
myStrCollection.Remove("userNameX");
' Remove an element of the collection.
myStrCollection.Remove("userNameX")

설명

이 메서드는 속성이 IsModified 로 설정되도록 합니다 true.

적용 대상