Say I have a StringBuilder object
var sb = new StringBuilder();
And an arbritrary array of strings
var s = new []{"a","b","c"};
Is this the 'quickest' way to insert them into the stringbuilder instance?
sb.Append(string.join(string.empty, s));
Or does StringBuilder have a function I have overlooked?
Edit: Sorry I dont know how many items sb will contain, or how many items may be in each String[].