Reputation: 135
Situation: Base class B where classes X, Y and Z derive from.
B is unwanted since it only provides a few properties and not general usefull implementation. I'd like to collapse all code from B into derived classes X, Y and Z.
Does a refactoring command exist for this usecase in e.g. Visual Studio (2010), Resharper (7.1/8.0/8.1) or VSCommands2010?
Upvotes: 1
Views: 209
Reputation: 1328
I think Push members down (Resharper) is what you are looking for:
B
Upvotes: 2