示例#1
0
 public void NewLine(int indentation)
 {
     sb.AppendLine();
     sb.Append(PythonWriter.GetIndentationString(indentation));
 }
示例#2
0
 public void NewLine()
 {
     sb.AppendLine();
     sb.Append(PythonWriter.GetIndentationString(IndentSize));
 }