Tagged Questions

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 u …
17
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: [AvailabilitySettin …
0
votes
2answers
124 views

ReSharper conflict with Visual C#

This happen after I installed the ReSharper. It's a problem that if I fix for one the other is going to alert and vice-versa. private readonly System.ComponentModel.IContainer _co …
3
votes
8answers
336 views

How best to deal with gigantic source code files in Visual Studio

I'm working on a project which makes substantial use of code generation. Some of the files it generates contain >0.25 million lines of code. VS (2K5) doesn't cope too badly, but R# …
0
votes
1answer
117 views

How to get R# not to reformat ASP.NET MVC Spaghetti code

When I'm writing spaghetti code in my MVC views, R# keeps automatically dropping my braces to the next line and indenting and such. Is there a way I can turn this off for just my v …
0
votes
2answers
124 views

Written a resharper plugin that modifies the TextControl?

Resharper claims to eat it's own dogfood, specifically, they claim that many of the features of Resharper are written ontop of R# (OpenAPI). I'm writing a simple plugin to fix up …