CommaDelimitedStringCollection.Remove(String) 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
从集合中移除一个字符串元素。
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
。