Top "Resharper" questions

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

Visual Studio 2012 / Resharper Unit Tests don't run

I used to be able to run unit tests in VS 2012. Now, all of a sudden, whether I try to "…

c# unit-testing visual-studio-2012 resharper vs-unit-testing-framework
Assert.Inconclusive and IgnoreAttribute

What is the right way to use Assert.Inconclusive and IgnoreAttribute in MS Unit test framework? We are using Assert.…

.net unit-testing resharper mstest tfsbuild
Resharper Hotkeys

I just started using resharper and I am trying to learn all the hotkeys - Is there a list of …

keyboard-shortcuts resharper hotkeys
How to reset the "Don't show this dialog again" settings for Visual Studio and ReSharper

In a Visual Studio project (C#), I attempted to perform a rename of a namespace using the ReSharper shortcut (Ctrl + …

visual-studio visual-studio-2008 resharper resharper-4.5
Why does Resharper say, "Co-variant array conversion from string[] to object[] can cause run-time exception on write operation" with this code?

This code: comboBoxMonth.Items.AddRange(UsageRptConstsAndUtils.months.ToArray()); public static List<String> months = new List<String> { "…

c# resharper string-conversion covariant covariant-return-types
ReSharper complains when method can be static, but isn't

Why does ReSharper complain when a method can become static, but is not? Is it because only one instance of …

c# resharper static-methods
ReSharper formatting: align equal operands

Note to Googlers, this question is somewhat out of date as the requested feature is now supported in the current …

c# resharper code-formatting
Using Console.Out.WriteLine vs Trace.WriteLine in nUnit either running in isolation or within reSharper or TeamCity

I vaguely remember reading "something" "somewhere" about using Trace.WriteLine over Console.Out.WriteLine in nUnit possibly in the context …

.net nunit resharper teamcity trace