예제 #1
0
 public static TextWriter Space(this TextWriter writer, int count = 1)
 {
     return(writer.AppendChar(' ', count));
 }
예제 #2
0
 public static TextWriter Semicolon(this TextWriter writer, int count = 1)
 {
     return(writer.AppendChar(';', count));
 }
예제 #3
0
 public static TextWriter CloseParenthesis(this TextWriter writer, int count = 1)
 {
     return(writer.AppendChar(')', count));
 }
예제 #4
0
 public static TextWriter CloseAngleBracket(this TextWriter writer, int count = 1)
 {
     return(writer.AppendChar('>', count));
 }
예제 #5
0
 public static TextWriter OpenSquareBracket(this TextWriter writer, int count = 1)
 {
     return(writer.AppendChar('[', count));
 }
예제 #6
0
 public static TextWriter Comma(this TextWriter writer, int count = 1)
 {
     return(writer.AppendChar(',', count));
 }
예제 #7
0
 public static TextWriter Tab(this TextWriter writer, int count = 1)
 {
     return(writer.AppendChar('\t', count));
 }