3
votes
2answers
47 views
ReSharper Warning - Access to Modified Closure
I have the following code:
string acctStatus = account.AccountStatus.ToString();
if (!SettableStatuses().Any(status => status == acctStatus))
acctStatus = ACCOUNTSTATUS.Pen …
0
votes
0answers
14 views
Resharper Autocomplete Issue
Hi All,
I've been using resharper with the resharper automplete off (just find VS better for my purposes currently), but despite trying every setting I've tried, whenever I use a …
2
votes
4answers
81 views
How do I get Visual Studio to add a open source license at the top of each file
How do I get Resharper to add a open source license at the top of each file?
0
votes
1answer
15 views
having resharper give errors for all unused parameters except on events
we want to have resharper complain and show errors every time we have a unused parameter to make sure the developers keep code clean and remove stuff that is not being used
the on …
2
votes
1answer
32 views
can you run resharper 4.5 and 5 beta side by side
i see they have a version of resharper for vs 2010
http://www.jetbrains.net/confluence/display/ReSharper/ReSharper+5.0+Nightly+Builds
can i install this for my vs 2010 developmen …
1
vote
1answer
17 views
How to change shortcut keys for a given command in ReSharper?
Hi,
I need to change shortcut for finding member (ALT + ) in ReSharper because of my native keyboard which brings me problem to press wrong key each time.
Where can I re-set a ne …
0
votes
1answer
31 views
Which ReSharper command causes the Context Action List to pop up?
I've turned off ReSharper intellisense but still want a keyboard shortcut for opening the context action list (the one that pops up on the left when you point at a piece of code). …
1
vote
2answers
35 views
Can I change the way ReSharper generates properties?
Is it possible to change the way that Resharper formats properties?
I don't like:
public string Foo
{
get
{
return bar;
}
set
{
bar = value …
1
vote
5answers
87 views
can i use resharper 4.5 with visual studio 2010 beta
should this work or do i need to wait for a new resharper release?
0
votes
2answers
50 views
Why ReSharper offers a variable name with a “class” suffix?
Hi guys,
I was wondering why R# offers a variable name with a "class" suffix? When I am creating an instance of a class, why would I put a class suffix of my instance? Can there b …
1
vote
1answer
28 views
Is it possible using Resharper to remove an object initializer?
Resharper 4.5 has the ability to turn the contstuction of an object followed by the setting of properties on that object into the object initializer format.
My question is can it …
5
votes
10answers
237 views
Should I use Resharper to tidy up other peoples code?
I use Resharper at work. Some of my colleagues do not.
When I open some code that has been written someone who doesn't, it is immediately obvious by the amount of orange on my sc …
1
vote
4answers
86 views
How good are the resharper 5.0 nightly builds?
They have pretty low stars....
is it at least equivilent of 4.5? or is it just a pain to use?
http://www.jetbrains.net/confluence/display/ReSharper/ReSharper+5.0+Nightly+Builds …
1
vote
2answers
54 views
Resharper Alt Enter not working
Help, I can't function without resharper. All of a sudden my Alt Enter shortcut (to bring up the action list) has stopped working. Anybody experienced this or know how to fix?
3
votes
5answers
175 views
Why does resharper suggest readonly fields
Why is ReSharper suggesting readonly field for 'settings' in my example below? If I understand correctly, you should use readonly modifier if you change this field only in construc …
