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
。