IndentedTextWriter tw = new IndentedTextWriter(internalTW, \" \");
Object referenced by \'tw\' is lost, but related resources are not disposed h
The types all implement IDisposable, and thus it is the caller's responsibility to call Dispose() like e.g.
IDisposable
Dispose()
using(var tw = new IndentedTextWriter(internalTW, " ")) { // do something with tw }
or by explicitly calling Dispose() in a finally block.
finally