共用方式為


CommaDelimitedStringCollection.AddRange(String[]) 方法

定義

將字串陣列中的所有字串加入至集合。

public:
 void AddRange(cli::array <System::String ^> ^ range);
public void AddRange (string[] range);
override this.AddRange : string[] -> unit
Public Sub AddRange (range As String())

參數

range
String[]

要加入至集合中的字串陣列。

範例

下列程式碼範例會示範如何使用 AddRange 方法。 此程式代碼範例是類別概觀所提供較大範例的 CommaDelimitedStringCollection 一部分。

// Add values to the CommaDelimitedStringCollection object.
myStrCollection.AddRange(
  authorizationRuleCollection.Get(i).Users.ToString().Split(
  ",".ToCharArray()));
' Add values to the CommaDelimitedStringCollection object.
myStrCollection.AddRange( _
  authorizationRuleCollection.Get(i).Users.ToString().Split( _
  ",".ToCharArray()))

備註

參數 range 必須是陣列,而不是逗號分隔字串。

適用於