StringCollection类是.NET Framework类库的新添加,它表示字符串的集合。 StringCollection类在System.Collections.Specialized命名空间中定义。
StringCollection.AddRange(String [])方法用于将字符串数组的元素复制到StringCollection的末尾。
句法:
public void AddRange (string[] value);
在这里, 字符串[]值是一个字符串数组,将添加到StringCollection的末尾。数组本身不能为null,但可以包含null的元素。
异常:如果value为null,则此方法将提供ArgumentNullException 。
笔记:
- StringCollection接受null作为有效值,并允许重复的元素。
- 如果StringCollection可以容纳新元素而不增加容量,则此方法是O(n)操作,其中n是要添加的元素数。如果需要增加容量以容纳新元素,则此方法将成为O(n + m)运算,其中n是要添加的元素数,m是Count。
以下程序说明了StringCollection.AddRange(String [])方法的用法:
范例1:
// C# code to copy the elements
// of a string array to the end
// of the StringCollection
using System;
using System.Collections;
using System.Collections.Specialized;
class GFG {
// Driver code
public static void Main()
{
// creating a StringCollection named myCol
StringCollection myCol = new StringCollection();
// creating a string array named myArr
String[] myArr = new String[] { "A", "B", "C", "D", "E" };
// Copying the elements of a string
// array to the end of the StringCollection.
myCol.AddRange(myArr);
// Displaying elements in StringCollection
foreach(Object obj in myCol)
{
Console.WriteLine("{0}", obj);
}
}
}
输出:
A
B
C
D
E
范例2:
// C# code to copy the elements
// of a string array to the end
// of the StringCollection
using System;
using System.Collections;
using System.Collections.Specialized;
class GFG {
// Driver code
public static void Main()
{
// creating a StringCollection named myCol
StringCollection myCol = new StringCollection();
// creating a string array named myArr
String[] myArr = new String[] { "2", "3", "4", "5", "6" };
// Copying the elements of a string
// array to the end of the StringCollection.
myCol.AddRange(myArr);
// Displaying elements in StringCollection
foreach(Object obj in myCol)
{
Console.WriteLine("{0}", obj);
}
}
}
输出:
2
3
4
5
6
参考:
- https://docs.microsoft.com/zh-cn/dotnet/api/system.collections.specialized.stringcollection.addrange?view=netframework-4.7.2