Inline Variable refactoring
This refactoring allows you to replace all occurrences of a variable in the code with its initializer. Note that the refactoring should be only applied if the variable value stays unchanged after initialization.
In the example below, we use this refactoring to inline the reversed
variable.
static string ReversedString(string input)
{
var chars = input.ToCharArray();
Array.Reverse(chars);
var reversed = new string(chars);
return reversed;
}
static string ReversedString(string input)
{
var chars = input.ToCharArray();
Array.Reverse(chars);
return new string(chars);
}
Inline a variable
Place the caret at the declaration or a usage of a variable in the editor.
Do one of the following:
Press Ctrl+Alt+N and then choose Inline Variable
Press Ctrl+Alt+Shift+T and then choose Inline Variable.
Choose
from the main menu.
If no conflicts are found, JetBrains Rider performs the refactoring immediately. Otherwise, it prompts you to resolve conflicts.
Last modified: 21 March 2024