Tagged Questions
4
votes
1answer
70 views
Why does Resharper think that these enums are never used?
I have these enums:
private enum FontSizeType
{
XSmall, //9
Small, //12
Medium, //18
Large, //24
XLarge, //36
XXLarge //47
}
...
0
votes
2answers
57 views
using resharper to extract a class and introduce a constructor dependency
Is it possible to use Resharper to refactor code such that the below method Eat is extracted into a seperate class, and the newly extracted class is injected in the Dinner class as an external ...
8
votes
3answers
343 views
Resharper find pattern and replace - how to insert strings
We have a sanity check method
void IsNotNull<T>(T obj){...}
invocation
IsNotNull(obj);
I want to replace this to invoke the other overload that takes a second param of type string ...
1
vote
2answers
109 views
Why is Resharper telling me my string[] is never assigned?
On this declaration:
string[] TardyEvenEmorys;
...Resharper tells me, "Field 'TardyEvenEmorys' is never assigned."
Later on in the code, assignments are made to the string[]:
TardyEvenEmorys[1] = ...
2
votes
2answers
186 views
Suspicious warning from Resharper - should I change my code?
With the following code:
if (lombardiTrophy.Substring(1, 1).Equals('~'))
...I get, "Suspicious comparison: there is no type in the solution which is inherited from both 'string' and 'char'"
Is ...
1
vote
2answers
121 views
Is this a mistake in/by Resharper?
I had this code:
string[] args = Environment.GetCommandLineArgs();
bool grabNext;
foreach (string arg in args)
{
if (arg == "-AA")
{
grabNext = true;
}
if (grabNext)
{
...
4
votes
2answers
234 views
Is there a ReSharper-like code reformat and cleanup tool for Scala?
I'd like to automatically clean-up and reformat a Scala code file the way I can do with ReSharper in Visual Studio for C#. Can I do this with IntelliJ Idea or another tool?
0
votes
1answer
205 views
How to refactor <link href=“ ” /> references in ASP.NET pages/views using ReSharper?
I moved a set of ASPX pages to a different folder using ReSharper's Refactor->Move command.
From ReSharper we have:
Move to Folder
This refactoring helps move a class, a file, or a selection ...
2
votes
2answers
556 views
Is there a way to find all unused code in a .NET project using ReSharper?
I've just done a major, major overhaul on a colleagues project and throughout the process almost everything got rewritten. There was far too much code beforehand.
Now, I am left with the prospect ...
