Rider Help

Pull Members Up refactoring

This refactoring helps moving type members and implemented interfaces from a derived type up the inheritance hierarchy to a base type. For example, if you have MyDerivedClass : MyBaseClass, IMyInterface, this refactoring can help you move members of MyDerivedClass to MyBaseClass or IMyInterface or to any of their ancestors. The refactoring can also move the entire implementation of IMyInterface to MyBaseClass or any of its ancestors.

To pull members up

  1. Select a type in one of the following ways:
    • In the editor, set the caret at the name of a type.
    • Select a type in the Structure window.
    Or, alternatively, select a member in the editor or in a tool window.
  2. Do one of the following:
    • Press Ctrl+Shift+R and then choose Pull Members Up
    • Choose Refactor | Pull Members Up in the main menu.
    The Pull Members Up dialog will open.
  3. Select a destination base type from the list of available types. Base types are displayed as a reversed hierarchy where types from the top of the hierarchy are displayed as most inner nodes.
  4. Select members and/or interfaces that you want to move. You can also click All Public to quickly select all public members and/or Dependent to select members that are referenced by other selected members, implement the selected interfaces, or override members in base classes.
  5. For any member, you can select Make abstract (if applicable) to create an abstract member in the target base class and leave its implementation in the current class.
  6. To apply the refactoring, click Next.
  7. If no conflicts are found, Rider performs the refactoring immediately. Otherwise, it prompts you to resolve conflicts.
Rider. Pull Members Up refactoring
Last modified: 11 October 2017

See Also