Context :

I read command line arguments using args object and print via formatted strings. Here is the sample code,

Code:
Console.WriteLine("I need to learn C# {0,9}", args[0], args[1], args[2], args[3], args[4], args[5], args[6], args[7], args[8], args[9]);
Is there a easy way to use the formatted strings and arrays instead of typing so much. Example i tried {0-9) to combine the formatted string...