Browse by Tags

All Tags » Resharper (RSS)

Working with Resharper's External Annotation XML Files

Resharper 4.0 has external annotation XML files that you can create to give Resharper more information about your code. For example, you can tell Resharper that a particular method does not accept a null argument. For example, the following method does...

Comparing CodeRush Refactor! Pro and Resharper 4, part 1 or N -- first glance.

Metadata view of code in referenced assemblies This is a big one for me. For whatever reason, Refactor 4 (and prior) completely disables this and sends you to the Object Browser instead. You get metadata view with CodeRush Refactor! Pro. Keyboard layout...

Resharper 4.0 EAP Settings and Installing Latest Build

The 4.0 EAP tends to do a full uninstall before installing (it's pre-beta, pre-alpha even; so it's no wonder). This tends to blow away your settings changes. If that's a pain point for you, the settings are stored in "%userprofile%\application...
Posted by PeterRitchie | 3 comment(s)
Filed under: ,

Resharper Isn't Always Smart

I was writing some code today, essentially like this: public class MyClass { private int value; public MyClass( int value) { this .value = value; } public static bool operator ==( MyClass left, MyClass right) { return left.value == right.value; } public...
Posted by PeterRitchie | 11 comment(s)
Filed under: , ,