while(true)
{
Stopwatch sw = Stopwatch.StartNew();
for (int i = 0; i < 500000; i++)
{
// 960ms
string str1 = string.Format("{0}, {1}, {2}, {3}, {4}", 1, 2, 3, 4, 5);
// 665ms
string str2 = string.Concat(1, ", ", 2, ", ",3, ", ", 4, ", ", 5);
// 566ms
string str3 = string.Join(", ", new string[] { 1, 2, 3, 4, 5 });
}
Console.WriteLine(sw.ElapsedMilliseconds);
}