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(\" \");
StringBuilder.Insert and StringBuilder.Append allow you to create any number spaces, e.g. sb.Insert(0, " ", 20) will insert 20 spaces to the start of your sb (StringBuilder) object.