How to combine / merge two StringCollection in C#
var collection1 = new StringCollection () { "AA", "BB", "CC" };
var collection2 = new StringCollection () { "DD", "EE", "FF" };
var resultCollection = collection1 + collection2 ; // TODO
How to combine / merge two StringCollection in C#
var collection1 = new StringCollection () { "AA", "BB", "CC" };
var collection2 = new StringCollection () { "DD", "EE", "FF" };
var resultCollection = collection1 + collection2 ; // TODO
you can cast as array and use Union, please note this will also remove duplicates
var resultCollection = collection1.Cast<string>().Union(collection2.Cast<string>())
You can copy all to an array like this
var collection1 = new StringCollection() { "AA", "BB", "CC" };
var collection2 = new StringCollection() { "DD", "EE", "FF" };
var array = new string[collection2.Count + collection1.Count];
collection1.CopyTo(array, 0);
collection2.CopyTo(array, collection1.Count);
If you still want a string collection you can just use
AddRange
Seems odd that
StringCollection
doesn't have any direct support for adding otherStringCollection
s. If efficiency is a concern, Beingnin's answer is probably more efficient than the answer here, and if you still need it in aStringCollection
you can take the array that is generated and useAddRange
to add that array of strings to a newStringCollection