| title | Replace a temporary variable with its value | ||
|---|---|---|---|
| description | Learn how to use the Quick Actions and Refactorings menu to remove a temporary variable and replace it with its value instead. | ||
| ms.date | 01/26/2018 | ||
| ms.topic | reference | ||
| ms.custom | ide-ref | ||
| author | Mikejo5000 | ||
| ms.author | mikejo | ||
| manager | mijacobs | ||
| ms.subservice | general-ide | ||
| dev_langs |
|
This refactoring applies to:
-
C#
-
Visual Basic
What: Lets you remove a temporary variable and replace it with its value instead.
When: The use of the temporary variable makes the code harder to understand.
Why: Removing a temporary variable may make the code easier to read.
-
Highlight or place the text cursor inside the temporary variable to be inlined:
-
Next, do one of the following:
- Keyboard
- Press Ctrl+. to trigger the Quick Actions and Refactorings menu.
- Mouse
- Right-click the code and select the Quick Actions and Refactorings menu.
- Keyboard
-
Select Inline temporary variable from the Preview window popup.
The variable is removed and its usages replaced by the value of the variable.



