Tagged Questions
7
votes
6answers
755 views
Why does resharper say 'Catch clause with single 'throw' statement is redundant'?
I thought throwing an exception is good practice to let it bubble back up to the UI or somewhere where you log the exception and notify the user about it.
Why does resharper say it is redundant?
try
...
1
vote
3answers
130 views
Why doesn't resharper suggest removing redundant access modifiers?
Resharper is superb, as any fule kno.
However, if I declare a method such:
private void MethodName() { //code in here }
or an enum:
public enum SomeEnum { Value1, Value2 }
Resharper doesn't ...