If you add spaces in front, they will be printed this way.
I usually do it like this.
return string.Format( @" name = {0} ID = {1} sec nr = {2} acc nr = {3}", string, int, int ,int);
Update: perhaps a more beautiful alternative:
string[] lines = { " name = {0}", " ID = {1}", " sec nr = {2}", " acc nr = {3}" }; return string.Format( string.Join(Environment.Newline, lines), arg0, arg1, arg2, arg3);
leppie
source share