It's common to see a developer use a StringBuilder or basic string concatenation to concatenate strings in .NET code. You'll usually see something like this: string comma = ","; StringBuilder sb = …
Continue Reading about Comma Delimiting Strings in .NET – The Framework Way →