I need to concatenate a lot of strings alltogether and put a comma between any of them. I have a list of strings
\"123123123213\" \"1232113213213\" \"1232131
If one wants to be cool and run on Heavy Fuel use Aggregate
List stringList = new List { "1234567890", "34343434", "4343434" }; Console.WriteLine( stringList.Aggregate( ( current, next ) => string.Format( "{0}, {1}", current, next ) ) ); // Outputs: 1234567890, 34343434, 4343434