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

适用于