示例#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));
 }