So a using statement automatically calls the dispose method on the object that is being \"used\", when the using block is exited, right?
But when is this necessary/benef
the "Using" comes into play when a resource needs to be disposed and it implements the IDisposable interface.