public static TextWriter Space(this TextWriter writer, int count = 1)
 {
     return(writer.AppendChar(' ', count));
 }
 public static TextWriter Semicolon(this TextWriter writer, int count = 1)
 {
     return(writer.AppendChar(';', count));
 }
 public static TextWriter CloseParenthesis(this TextWriter writer, int count = 1)
 {
     return(writer.AppendChar(')', count));
 }
 public static TextWriter CloseAngleBracket(this TextWriter writer, int count = 1)
 {
     return(writer.AppendChar('>', count));
 }
 public static TextWriter OpenSquareBracket(this TextWriter writer, int count = 1)
 {
     return(writer.AppendChar('[', count));
 }
 public static TextWriter Comma(this TextWriter writer, int count = 1)
 {
     return(writer.AppendChar(',', count));
 }
 public static TextWriter Tab(this TextWriter writer, int count = 1)
 {
     return(writer.AppendChar('\t', count));
 }