string.Format() with it's "bla {0} bla" syntax is great. But sometimes I don't want to enumerate the placeholders. Instead I just want to map the variables sequentially in the placeholders. Is there a library that can do that?
For instance, instead of
string.Format("string1={0}, string2={1}", v1, v2)
something like
string.Format("string1={*}, string2={*}", v1, v2)