Possible Duplicate:
Named string formatting in C#
Hi, When using
string.Format("The format use argument #0 {0} and argument #1 {1}", arg0, arg1)
Is it possible to name arg0/arg1 so that the reference in the formation text becomes more meaningful, like:
string.Format("The format use argument #0 {arg0Name} and argument #1 {arg1Name}", {arg0, arg0Name}, {arg1, arg1Name})
If it can, then C# would be more lovely!