I have the following
data.AppendFormat(\"{0},\",dataToAppend);
The problem with this is that I am using it in a loop and there will be a t
I prefer manipulating the length of the stringbuilder:
data.Length = data.Length - 1;