Top "Resharper" questions

ReSharper is a refactoring and productivity extension by JetBrains that extends native functionality of Microsoft Visual Studio versions since 2003.

Virtual member call in a constructor

I'm getting a warning from ReSharper about a call to a virtual member from my objects constructor. Why would this …

c# constructor warnings resharper virtual-functions
What does CultureInfo.InvariantCulture mean?

I have a string of text like so: var foo = "FooBar"; I want to declare a second string called bar …

.net resharper
How can I disable ReSharper in Visual Studio and enable it again?

I installed ReSharper, and it works in Visual Studio, but how can disable it? Whenever I search in the ReSharper …

visual-studio visual-studio-2008 resharper
What are some alternatives to ReSharper?

I'm considering purchasing a ReSharper license, but are there any possible alternatives to ReSharper and how would you rate these …

c# asp.net refactoring resharper
How do I generate a constructor from class fields using Visual Studio (and/or ReSharper)?

I've gotten accustomed to many of the Java IDEs (Eclipse, NetBeans, and IntelliJ IDEA) providing you with a command to …

c# visual-studio visual-studio-2010 resharper code-generation
Where do I mark a lambda expression async?

I've got this code: private async void ContextMenuForGroupRightTapped(object sender, RightTappedRoutedEventArgs args) { CheckBox ckbx = null; if (sender is CheckBox) { ckbx = …

c# lambda resharper windows-store-apps async-await
Handling warning for possible multiple enumeration of IEnumerable

In my code in need to use an IEnumerable<> several times thus get the Resharper error of "Possible …

c# .net performance resharper
Invert "if" statement to reduce nesting

When I ran ReSharper on my code, for example: if (some condition) { Some code... } ReSharper gave me the above warning (…

c# resharper
Why should I use var instead of a type?

Possible Duplicate: ReSharper and var After I have installed ReSharper it demands(by warnings) that I use var whenever possible, …

c# .net coding-style resharper var
Tests not running in Test Explorer

I am currently working on a solution that has currently 32 Unittests. I have been working with the resharper test runner …

visual-studio unit-testing visual-studio-2012 resharper