I often find myself writing
var message = \"Hello {0}\";
and then going back and typing in
var message = string.Format(\"He
Shameless plug
I've also tried to formulate an approach to make string format creation easier, and what I came up with is string splicing a-la PHP:
This is part of a ReSharper plug-in that you can find here.