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