共用方式為


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

適用於