JetBrains Rider 2021.1 Help

Inline Class refactoring

Refactor | Inline | Inline...
Ctrl+Alt+N

This refactoring allows you to merge one class into another class. The class that you merge in is removed, its members are moved to the class where the merged class is used, and all usages of the merged class are updated accordingly.

In the example below, we merge the Painter class (that is, its field myColor and its method InitPainter) into the Circle class.

class Painter { private Color myColor; public Painter(Color c) { myColor = c; InitPainter(myColor); } private void InitPainter(Color color) { //init painter } } class Circle { private Painter myPainter; public Circle(Color c) { myPainter = new Painter(c); } }
class Circle { private Color myColor; public Circle(Color c) { myColor = c; InitPainter(myColor); } private void InitPainter(Color color) { //init painter } }

Inline a class

  1. Place the caret at the name or a usage of a property or a field that represents the class that you want to merge in. Or, alternatively, select a property or a field in the Structure window.

  2. Do one of the following:

    • Press Ctrl+Alt+N and then choose Inline Class

    • Press Ctrl+Alt+Shift+T and then choose Inline Class

    • Choose Refactor | Inline Class in the main menu.

  3. If no conflicts are found, JetBrains Rider performs the refactoring immediately. Otherwise, it prompts you to resolve conflicts.

After applying the refactoring the property or the field is replaced with members of its type. All usages of the property or the field are updated accordingly.

Last modified: 18 March 2021