예제 #1
0
 public Braces(CsWriter wtr)
 {
     _wtr = wtr;
     _wtr.WriteLine("{");
     _wtr.Indent++;
     _wtr._open.Add(this);
 }
예제 #2
0
 void IDisposable.Dispose()
 {
     if (_wtr != null && _wtr._open.Remove(this))
     {
         _wtr.Indent--;
         _wtr.WriteLine("}");
         _wtr = null;
     }
 }
예제 #3
0
 public Braces(CsWriter wtr)
 {
     _wtr = wtr;
     _wtr.WriteLine("{");
     _wtr.Indent++;
     _wtr._open.Add(this);
 }