coderushforroslyn-118160-refactoring-assistance-introduce-using-statement.md
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.
Available when the caret is on an object creation statement assuming that the object implements the IDisposable interface.
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.
using (Graphics formGraphics = CreateGraphics()) {
formGraphics.FillRectangle(new SolidBrush(Color.Purple), new Rectangle(50, 50, 100, 100));
}
Using formGraphics As Graphics = CreateGraphics()
formGraphics.FillRectangle(New SolidBrush(Color.Purple), New Rectangle(50, 50, 100, 100))
End Using