views:

27

answers:

1

I created an interface in a file, then a class that implements the interface in another file.

If i add a property to the implementation class, is it possible to pass that method signature down to the interface automatically using resharper?

I tried, and it seemed to just create another interface in the same file?

+2  A: 

You should use the Pull Members Up refactoring - that does exactly what you need

HakonB

related questions