Top "Resharper" questions

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

ReSharper warns: "Static field in generic type"

public class EnumRouteConstraint<T> : IRouteConstraint where T : struct { private static readonly Lazy<HashSet<string>> _…

c# asp.net-mvc-3 generics static resharper
Ctrl+R, Ctrl+R command not working

I'm attempting to use the Ctrl+R, Ctrl+R command within Visual Studio 2008 to rename a variable. I get an …

c# visual-studio-2008 refactoring resharper
Resharper- Find all unused classes

I know how to find unused references of a single file by right clicking on the file and selecting the "…

c# resharper
Disable, but not uninstall Resharper 4.x onwards

Any ideas on how to disable, but not uninstall Resharper 4.x or above?

visual-studio resharper add-in
How to disable undesirable auto-complete with Visual Studio + ReSharper?

I'm using Visual Studio 2010 and ReSharper 5. I define this at the top of a .cs file. #if X86 using size_…

c# visual-studio resharper intellisense
How to reorder type members with Resharper?

Typical scenario: a class that a lot of people have worked on. I'd like to sort methods, properties, etc... in …

c# resharper
Advantages of using const instead of variables inside methods

Whenever I have local variables in a method, ReSharper suggests to convert them to constants: // instead of this: var s = "…

c# coding-style resharper constants
How can I use ReSharper to list unused methods in a solution?

In a legacy ASP.NET project I have inherited, there are an abundance of methods defined which are used absolutely …

c# asp.net resharper
A tool like ReSharper, but for Java?

I have read a lot about ReSharper on here. It sounds like it has a lot of cool features to …

java resharper
String Interpolation vs String.Format

Is there a noticable performance difference between using string interpolation: myString += $"{x:x2}"; vs String.Format()? myString += String.Format("{0:x2}", …

c# string performance resharper string-interpolation