Using statement A Using block does three things: it creates and initializes variables in the resource list, it runs the code ...

Using statement
A Using block does three things: it creates and initializes variables in the resource list, it runs the code in the block, and it disposes of the variables before exiting. Resources used in the Using block must implement System.IDisposable.
Using [, ]...End Using