Introduce Using Statement
Purpose
Replaces a disposable object creation statement with the using statement. If the Dispose() method was called explicitly, this refactoring removes it and closes the using body on the line that was holding the Dispose() method. This increases the code readability and ensures that the objects you are using locally are properly disposed of.
Availability
Available when the caret is on an object creation statement assuming that the object implements the IDisposable interface.
Usage
Place the caret in the IDisposable object creation statement.
- Press the Ctrl + . or Ctrl + ~ shortcut to invoke the Code Actions menu.
- Select Introduce Using Statement from the menu.
After execution, the Refactoring replaces the object creation and disposition statements with the using statement.