protected override void OnDisposing()
 {
     _writer.Indent(Indentation.Decrease);
 }
Пример #2
0
 public IDisposable Indent()
 {
     return(_codeWriter.Indent());
 }
 public Intedentor(TextCodeWriter writer)
 {
     _writer = writer;
     _writer.Indent(Indentation.Increase);
 }