I am building a string using the string.Format method. Often, I will have very long parameter lists for tables with many columns for example
string query = string.Format("{0},{1},{2},...,{30}", val1, val2, ...., val30);
Does C# have a more concise way of dealing with such strings?