vote up 0 vote down star

Hi there,

In resharper is it possible to force an update of an interface?

basically i have a class that inherits from an interface but this class is constantly changing so i need to reflect the changes in the Interface otherwise VS complains that i am not implementing something as the signature of the method has changed.

I was wondering if there is a way in resharper to say "Update this class with its Interface" ?

Any ideas?

Thanks

flag

Perhaps you should try to stabilize your way of working with this, the fact that the interface is mapped after the class, and that they change a lot, sounds to me as though you don't have a clear specification of what you need to build. – Lasse V. Karlsen Oct 8 at 9:17
Thanks everyone, yes i was actually designing the class as i go .. its the wrong direction. Should evaluate first.. – mark smith Oct 8 at 10:15

3 Answers

vote up 1 vote down check

Letting the interface follow the implementation is the exact wrong direction. First, you should define in your interface, what you need, then implement it in the backing class. You shouldn't expect a tool to support undesired workflows instead...

If you go the right way, R# will give you all support you ever need: You can refactor existing methods via Refactor|Rename..., Refactor|Change Signature... and Implement Members.

link|flag
vote up 0 vote down

If you use ReSharper to modify the method, it can/will also modify the interface definition.

For instance, if you use ReSharper's Rename functionality on the method, the interface definition of it will get renamed. Additionally, if you use ReSharper's Change Signature functionality on the method, it asks you if you want to do the refactoring on the interface as well.

link|flag
vote up 0 vote down

If you're changing signature of a method defined in an interface, change it via Refactor - Change Signature.... ReSharper will then ask you if you want to change signature of an interface method.

Other than that, I cannot imagine how would ReShaper know what and how to update.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.