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(\" \");
You could use "\t", I think, to give you a tab character. That might make the spaceing more clear.
"\t"