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 may create class extensions.
public static class StringExtensions { public static string GetSpace(this String) { return " "; } }
and you can call this.
String.GetSPace();