ReSharper is a refactoring and productivity extension by JetBrains that extends native functionality of Microsoft Visual Studio versions since 2003.
public class EnumRouteConstraint<T> : IRouteConstraint where T : struct { private static readonly Lazy<HashSet<string>> _…
c# asp.net-mvc-3 generics static resharperI'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 resharperI know how to find unused references of a single file by right clicking on the file and selecting the "…
c# resharperAny ideas on how to disable, but not uninstall Resharper 4.x or above?
visual-studio resharper add-inI'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 intellisenseTypical scenario: a class that a lot of people have worked on. I'd like to sort methods, properties, etc... in …
c# resharperWhenever I have local variables in a method, ReSharper suggests to convert them to constants: // instead of this: var s = "…
c# coding-style resharper constantsIn a legacy ASP.NET project I have inherited, there are an abundance of methods defined which are used absolutely …
c# asp.net resharperI have read a lot about ReSharper on here. It sounds like it has a lot of cool features to …
java resharperIs 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