Пример #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));
 }