Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

When using Resharper, for some reason, when I call an extension method, it automatically converts it into a static method call. This is the so called Convert Extension Method to Plain Static refactoring.

foo.Bar()

becomes

MyStaticExtensions.Bar(foo);

Ironically, it then flags this as a code smell. How do I turn this off?

share|improve this question

2 Answers

This feature is embedded in the IntelliSense of Resharper. I'm using Linq-to-sql extensions a lot, so I have disabled this feature: Resharper - Options - IntelliSense - Enable Radiobutton Visual Studio

share|improve this answer

That doesn't happen for me (Resharper 4.5). Do you have "silent clean up" enabled? (Resharper - options - Code Cleanup).

share|improve this answer
Nope, it doesn't look like I have any cleanup profiles set up. This actually only happens in a particular circumstance. Namely a Linq To SQL extension method defined in a partial class. – Charles Graham Aug 25 '09 at 15:39
1  
@Charles: ok, that makes more sense (that its a particular circumstance). I'll try to repro... – Nader Shirazie Aug 25 '09 at 15:41

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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