vote up 2 vote down star

While trying to get to all green, i got the following suggestion by Resharper.

Original code:

    static public string ToNonNullString(this XmlAttribute attr)
    {
        if (attr != null)
            return attr.Value;
        else
            return string.Empty;
    }

Suggestion: remove redundant 'else' resulting in following:

    static public string ToNonNullString(this XmlAttribute attr)
    {
        if (attr != null)
            return attr.Value;
        return string.Empty;
    }

To me, the suggested version seems less readable than the original. Does Resharper suggestion reflect the definition of good maintainable code?

flag

78% accept rate

11 Answers

vote up 9 vote down check

Technically Resharper is correct in that the "else" is unnecessary, I prefer the former version though as the intent is more obvious.

Having said that, I'd rather go with:

return attr != null ? attr.Value : string.Empty;
link|flag
1  
Ternary operators for readability eh? critical vulcan eyebrow raise – wcoenen Jan 22 '09 at 0:41
+1, yes I find it more readable - why are people so afraid of the conditional operator? – Brian Rasmussen Jan 22 '09 at 7:48
Because I have to hunt for the operator symbols to see what the different parts are. – Lasse V. Karlsen Jan 22 '09 at 7:58
@lassevk - for a simple example as above I honestly can't see the problem, but I agree that nested conditionals with no use of whitespace can get messy. – Brian Rasmussen Jan 22 '09 at 8:06
Honestly... I don't find this very readlable at all. Granted, C# is an new language to me, ifs and elses are not :P – Sakkle Feb 25 at 15:33
show 1 more comment
vote up 6 vote down

Ah, code aesthetics. Holy war time. (ducks)

I'd go with either a ?: expression:

return attr != null ? attr.Value : String.Empty

or invert the if and remove the line break to produce a guard clause:

if (attr == null) return String.Empty;

return attr.Value;
link|flag
Yes, this is exactly what guard clauses are good for. – Jay Bazuzi Feb 25 at 15:39
vote up 4 vote down

I agree that the first version of your code is more readable.

I've found Resharper suggestions in these cases to not always be helpful, although sometimes it can clean things up. That's why I've configured Resharper to show the change as a "Hint" rather than "Suggestion". This causes the green underline to be less visible and it won't be highlighted in the right sidebar.

link|flag
vote up 4 vote down

I think the new version is much better if you invert the if

static public string ToNonNullString(this XmlAttribute attr)
{
    if (attr == null)
        return string.Empty;

    return attr.Value;
}

Because your original version is too symmetric, while null-case is a special case.

New version is more readable in the terms of "what does it return most of the time?".

link|flag
vote up 2 vote down

Your original code is much more readable and understandable - at a glance, you can see exactly the condition which causes string.Empty to be returned. Without the else, you have to see that there is a return in the if block before that.

Just remember, you're a human and inherently smarter than the machine. If it tells you something is better and you don't agree, then don't listen to it.

link|flag
vote up 2 vote down

If you do not like the way ReSharper suggests something, just disable the specific suggestion (slash warning slash hint). The same goes for coding style, which I think is quite highly configurable. Claiming ReSharper to be unusable (quoting "I'm happy to say it didn't survive, nobody here is using it anymore") just because you do not take 5 minutes to get know how to configure it is just plain stupid.

Of course you should not let some tool dictate some part of your coding style, and ReSharper is NOT doing that if you tell it not to. It's that simple.

link|flag
vote up 0 vote down

I've noticed the same thing about ReSharper so I do appreciate its ability to turn some items off or downgrade their warning level. I also am perplexed by this suggestion:

SomeClass varName = new SomeClass();

has a suggested change to:

var varName = new SomeClass();

Yes, I know that I don't need the initial declaration type but it feels odd to suggest that the var form is somehow better than the other. Is anyone familiar with the rationale behind the suggestion or do you agree with me that this one is odd as well?

link|flag
i do too, thats why this is the only thing i change when i install resharper. i make it always use explicit types. – Orentet Jan 22 '09 at 7:49
vote up 0 vote down

Classic example of the exceptions that creep into everything when you use a small sample size. Refactoring a huge if-elseif-else block into a guard clause layout makes code far more readable, but, as you say, if you apply the same rules to a single if-else it's not as helpful. I'd go so far as to say it was a (slight) lack of foresight by the resharper devs not to skip over very small blocks such as this, but it's harmless enough.

link|flag
vote up 0 vote down

The original code is much more readable, in my opinion. This just demonstrates why it's a good idea to review changes made by code analysis tools.

Here's another option -- more verbose but with a single return point.

static public string ToNonNullString(this XmlAttribute attr)
{
    string result;

    if (attr != null)
        result = attr.Value;
    else
        result = string.Empty;

    return result;
}
link|flag
prefer multiple return points myself. :P – Sekhat Jan 22 '09 at 8:28
vote up 0 vote down

Being a noob at C# and more used to C and Java I still can't get used to the placement of angle brackets in C# .NET and VS. Putting all that aside, I agree with Andrey in that inverting the 'if' is even more readable. On the other hand I personally find that omitting the 'else' reduces readability (slightly). I would go with this personally:

static public string ToNonNullString(this XmlAttribute attr)
{    
    if (attr == null)
        return string.Empty;
    else
        return attr.Value;
}
link|flag
vote up -2 vote down

Some colleagues of mine started using Resharper from that moment on pages they edited were terrible in layout and readability. I'm happy to say it didn't survive, nobody here is using it anymore.

About the statement at hand i agree with Jeffrey Hantin, the inline-if is very nice for such a type of statement and Whatsit's solution is highly accaptable to. With some exceptions i (personaly) say methods/functions should have only 1 return statement.

Also if you (almost) always implement the else with your if (even if it's nothing else but a comment-line stating you do nothing in with the else-statement) it forces you to think about that situation, more often than not it can prevent mistakes.

Both remarks should be used as a 'think about' not like a rule, just like most of this kind of issues, always use your brain :) most errors occur when you don't.

In conclusion: Say NO to Resharper! (yes, I truely dislike Resharper, sorry.)

link|flag
1  
So what about all the other features of ReSharper besides the code hints and suggestions? They make my life easy. Plus, you can configure ReSharper to show only the rules you agree with anyway. – Sekhat Jan 22 '09 at 8:31

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.