Using Resharper 7.1, C#
I have a class Apple
that is based on Fruit
public partial class Apple: Fruit, IEat
Using the command Refactor/Pull Members Up, how do I add the Fruit.Eat() method to the Interface?
The Resharper UI only lets me add Apple
members.