I want to represent the following string:
aaaa,23,"something inside double quotes", 99, 8, 7
I was thinking to do this using String.Format
:
StringBuilder.AppendLine(string.Format("{0},{1},{2},{3},{4},{5}",
item.one, item.two, item.three, item.four, item.five, item.six));
I need to wrap third argument {2}
with double quotes.