I have an array e.g. string[] ccsplit.
I want to add all of these into a string, so I use stringbuilder:
StringBuilder builder = new StringBuilder();
foreach (string str in ccsplit)
{
builder.Append(str);
}
But the only problem is that I don’t want the string ccsplit[0] to be added to the stringbuilder, how could I achieve this?
You can start the index at 1 all the time and append it to stringbuilder.