vote up 6 vote down star
16

My whole department has owned individual copies of ReSharper for about a year, but I find I'm one of only two people that actually use any of its features regularly. I'm trying to get everybody to use it more effectively and would like opinions on the most useful features and their shortcuts so I can share more than just what I use it for.

So what's your single favorite feature and its keyboard shortcut for ReSharper?

flag

14 Answers

vote up 10 vote down check

Generate Code - Alt + Insert - fantastic feature.

This blog series is an invaluable reference for people starting with ReSharper as well.

link|flag
Thanks for the link to the blog, I'll have to read through that. – phloopy Sep 23 '08 at 0:32
vote up 1 vote down

I love go to type and go to file (Ctrl n / Ctrl Shift n ) (or if you use the Visual Studio scheme Ctrl t / Ctrl Shift t). I'm sure that feature alone saves me 30 minutes every day.

link|flag
vote up 1 vote down

Mine is Highlight Usages (Alt+Shift+F11 in VS keymap), it is making it easier to keep track of member usage in a single file with different colors for reads, writes and declarations.

link|flag
OMG! You just made my day! – orip Dec 17 at 17:01
vote up 0 vote down

Cleanup Code, Insert Constructor (alt-ins), convert delegate to lambda (I'm still getting my head around that particular C# feature a bit), Find Usages.

Code analysis is also a huge feature for me -- it's saved me a lot of time since it reports compilation errors before they happen and I work on a few projects that are slow to compile.

Optimize Usages was and still is a favorite, but that's less critical now that Visual Studio itself includes it as a refactoring.

link|flag
vote up 3 vote down

Cleanup Code (CTRL + ALT + F)

link|flag
This one kept getting a team member into trouble on a project; be careful if your in-house standards are different to Resharper's formmating rules! – Mitch Wheat Nov 11 '08 at 22:58
vote up 0 vote down

I Like 'Go to Inheritor' (Ctrl+Alt+B) when navigating code with liberal Interface use.

link|flag
vote up 0 vote down

Powerful refactoring and the auto-layout feature.

link|flag
vote up 6 vote down

CamelHumps - for example, when typing Console.WriteLine(), you just need to hit W and L to find the WriteLine method in Intellisense list.

link|flag
Very useful feature that I wasn't even aware of before, thanks! – phloopy Sep 23 '08 at 0:33
Thanks! I always forget about this feature... – Mitch Wheat Nov 11 '08 at 22:56
+1 for the CamelHump. – Metro Smurf Jun 27 at 6:22
vote up 5 vote down

Find Usage (Alt-F7)

link|flag
vote up 0 vote down

I use Live Templates all the time.

link|flag
vote up 2 vote down

Rename (F2)

Also, here's a tip to get everyone using the shortcuts rather than the mouse... unplug their mouse! A bit extreme I know, but you can always print out the cheat sheet.

link|flag
A cheat sheet, awesome (: – phloopy Sep 23 '08 at 0:33
Ctrl+R+R works as well, more keys, but somehow I get these quicker and the key is intuitive (R for Rename) – Simpzon Aug 29 at 22:30
vote up 7 vote down

Extract Method (Ctrl + Alt + M)

One of the most important types of refactoring. Makes your code so much more readable and maintainable. No need to write a comment about a block of code when you can encapsulate it in a intent revealing method name.

link|flag
vote up 1 vote down

I like the way NUnit integration is done, with the little green bubbles next to each test.

link|flag
vote up 1 vote down

Introduce variable.

link|flag

Your Answer

Get an OpenID
or

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