33
votes
11answers
3k views
C# method can be made static, but should it?
Resharper likes to point out multiple functions per asp.net page that could be made static. Does it help me if I do make them static? Should I make them static and move them to a utility class?
22
votes
17answers
3k views
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 (Invert "if" statement to reduce nesting), and suggested …
21
votes
15answers
4k views
Resharper vs. CodeRush
I know there are many discussions if Resharper or CodeRush is better. At my company we currently use Resharper and I'm fine with it.
But last week I watched a screencast about CodeRush and thought …
20
votes
17answers
1k views
Is ReSharper worth the adjustment, is there a good tutorial for 4?
I was watching a couple of episodes of dnr.tv and was given my first glimpse of ReSharper, I was very impressed so I decided to give it a try, fully aware that it'd take some getting used to, but is …
18
votes
1answer
3k views
Access to Modified Closure
string [] files = new string[2];
files[0] = "ThinkFarAhead.Example.Settings.Configuration_Local.xml";
files[1] = "ThinkFarAhead.Example.Settings.Configuration_Global.xml";
//Resharper …
18
votes
18answers
1k views
What ReSharper 4.0 live templates for C# do you use?
What ReSharper 4.0 templates for C# do you use?
Let's share these in the following format:
[Title]
Optional description
Shortcut: shortcut
Available in: [AvailabilitySetting]
// Resharper …
17
votes
1answer
1k views
Access to Modified Closure (2)
This is an extension of question from Access to Modified Closure. I just want to verify if the following is actually safe enough for production use.
List<string> lists = new …
17
votes
6answers
886 views
Are there shortcut keys for ReSharper’s Unit Test Runner?
For obvious productivity reasons, I make an effort of learning and using as many of the keyboard shortcuts for the various Re# commands.
However, it seems that the unit test runner does not have any …
17
votes
10answers
3k views
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 be something not to do?
14
votes
2answers
347 views
Get Resharper to Consume StyleCop configuration
Our project already has a StyleCop configuration. I am using ReSharper and I would like to be able to have R# use the StyleCop settings.
I know that you can use StyleCopForResharper to build the …
14
votes
10answers
1k views
Is using resharper a time saver?
I have installed ReSharper and "played" with it twice now. I have always found it annoying and that it got in the way of the hotkeys I was already using in Visual Studio. The people that use it tend …
13
votes
30answers
1k views
What is your favorite Resharper/Visual Studio shortcut?
Let's show some Resharper love and learn new shortcuts while at it:
Along the lines of Joel Spolsky's "What is your single favorite keyboard shortcut in Emacs?" what is your single favorite Resharper …
12
votes
11answers
1k views
ReSharper sluggishness
I like ReSharper, but it is a total memory hog. It can quickly swell up and consume a half-gig of RAM without too much effort and bog down the IDE. Does anybody know of any way to configure it to be …
11
votes
13answers
736 views
Resharper, has it changed your “programming” life?
Hey,
We're thinking of getting Resharper and I would really be interested to hear from people who've used it and whether you get much out of it? Does it really speed up production and if you moved to …
9
votes
6answers
613 views
C# ‘var’ keyword versus explicitly defined variables
I'm currently using ReSharper's 30-day trial, and so far I've been impressed with the suggestions it makes. One suggestion puzzles me, however.
When I explicitly define a variable, such as:
…
