I\'m wondering if there\'s a more OO way of creating spaces in C#.
Literally Space Code!
I currently have tabs += new String(\" \"); and I can\'
tabs += new String(\" \");
if the number of spaces would be changing then you could do something like this:
public static string Space(int count) { return "".PadLeft(count); } Space(2);