Creating an interface from a huge class using resharper

interface, refactoring, resharper

Solution

Yes.

My shortcut is Ctrl + Shift + R to bring up the refactoring options. Doing this on the class name allows you to" Extract Interface..."

Optionally, you can choose from the menu > ReSharper > Refactor > Extract Interface...

Problem

I have a very big class with lots of methods, is it possible to build an interface from this class using Resharper?

Original source