Is it possible in Visual Studio 2008, either with or without Resharper, to re-order methods in a class file to match the order of methods in an associated interface file? What about the opposite (re-ordering the interface to match the implementing class)?
+1
A:
Not directly related to your question, but I use the Resharper window "File Structure" to organize the cs-file of the class. In it, you can drag members up and down and encapsulate them in regions.
Tormod
2010-03-29 12:26:20
Thanks, that definitely makes it easier to accomplish what I wanted.
ElectricDialect
2010-03-29 13:39:27
My pleasure. Also, you can put the cursor on a class member within the code view, hold Ctrl-Alt-Shift down for one second and then start moving it with your up/down arrow keys. This also works for individual code lines.
Tormod
2010-03-30 14:26:54