vote up 8 vote down star
4

My team has recently started using Lance Hunt's C# Coding Standards document as a starting point for consolidating our coding standards.

There is one item that we just don't understand the point of, can anyone here shed any light on it?

The item is number 77:

Always validate an enumeration variable or parameter value before consuming it. They may contain any value that the underlying Enum type (default int) supports.

Example:

public void Test(BookCategory cat)
{
if (Enum.IsDefined(typeof(BookCategory), cat))
{…}
}
flag

77% accept rate

5 Answers

vote up 4 vote down check

I think the comments above pretty much answered the question. Essentially, when I wrote this rule I was trying to convey a defensive coding practice of validating all inputs. Enums are a special case because many developers incorrectly assume that they are validated, when they are not. As a result, you will often see if statements or switch statements fail for an undefined enum value.

Just keep in mind that by default an enum is nothing more than a wrapper around an INT, and validate it just as if it were an int.

For a more detailed discussion of proper enum usage, you might check out blog posts by Brad Abrams and Krzysztof Cwalina or their excellent book "Framework Design Guidelines: Conventions, Idioms, and Patterns for Reusable .NET Libraries"

link|flag
Thanks for the reply Lance - any chance you could update your reply to include links to those blog posts? – Richard E Mar 1 at 17:41
vote up 0 vote down

If you want to extend your enum with new values in future versions of your library shouldn't use the construct

if (Enum.IsDefined(typeof(BookCategory), cat))

As this only tests whether the type is valid according to the enum definition. Your code on the other hand was only tested for the currently allowed values and might fail for new values.

See This weblog article for more background information.

link|flag
Well, if you (later) start using values for your enums that aren't defined in the enum, what's the point of having an enum in the first place? – Tor Haugen Feb 27 at 12:10
The point is that you can later define new valid enum values (by recompiling your code).. But code compiled against your code wasn't tested with this new value... and Enum.IsDefined just returns true – Bert Huijben Feb 27 at 14:30
vote up 16 vote down

The point is that you might hope that by having a parameter of type BookCategory, you'd always have a meaningful book category. That isn't the case. I could call:

BookCategory weirdCategory = (BookCategory) 123456;
Test(weirdCategory);

If an enum is meant to represent a well-known set of values, code shouldn't be expected to sensibly handle a value outside that well-known set. The test checks whether the argument is appropriate first.

I'd personally reverse the logic though:

public void Test(BookCategory cat)
{
    if (!Enum.IsDefined(typeof(BookCategory), cat))
    {
        throw new ArgumentOutOfRangeException("cat");
    }
}

In C# 3 this can easily be done with an extension method:

// Can't constrain T to be an enum, unfortunately. This will have to do :)
public static void ThrowIfNotDefined<T>(this T value, string name) where T : struct
{
    if (!Enum.IsDefined(typeof(T), value))
    {
        throw new ArgumentOutOfRangeException(name);
    }
}

Usage:

public void Test(BookCategory cat)
{
    cat.ThrowIfNotDefined("cat");
}
link|flag
It is a pain that generics don't allow "Enum"/"enum" as a constraint... – Marc Gravell Feb 27 at 11:26
@Marc: Indeed. @Richard: Added. – Jon Skeet Feb 27 at 11:27
Shameless plug: my Helper Trinity utility classes include extension methods to check arguments, including enumerations. thehelpertrinity.codeplex.com/Wiki/… – Kent Boogaart Feb 27 at 11:32
Wow, didn't realize C# enums were just ints really. Java enums really are so much better. – cletus Feb 27 at 13:05
2  
See blogs.msdn.com/brada/archive/… for reasons why you shouldn't use Enum.IsDefined. – Bert Huijben Feb 27 at 14:34
show 4 more comments
vote up 1 vote down

This is because it's totally legal to call that "Test" method like this:

Test((BookCategory)-999);

That'll cast -999 as a BookCategory, but of course the result (passed as the "cat" parameter to Test) isn't a valid value for the BookCategory enum.

link|flag
I think you mean "That'll cast -999"... – Martinho Fernandes Feb 27 at 11:23
Oops, you're right - I went back and edited one part of the post but forgot to change the other part. Thanks! – Matt Hamilton Feb 27 at 23:15
vote up 13 vote down

Enums are not checked:

enum Foo { A= 1, B = 2, C = 3}
Foo x = (Foo) 27; // works fine

Now you have a Foo that isn't defined. He is just saying "check your input". Note that Enum.IsDefined is relatively slow (reflection based). Personally, I tend to use a switch with a default that throws an exception:

switch(x) {
    case Foo.A: /* do something */ break;
    case Foo.B: /* do something */ break;
    case Foo.C: /* do something */ break;
    default: throw new ArgumentOutOfRangeException("x");
}
link|flag
I agree that you should always have a default: throw new ArgumentOutOfRangeException. Also covers you for the scenario where a new value gets added to the enumeration. – Richard E Feb 27 at 11:25
Arguably, NotSupportedException might be more appropriate - but heck, as long as it throws! – Marc Gravell Feb 27 at 11:26
Agreed! Throw new OldShoeException() is better than letting the logic fall through and a bug showing up elsewhere as a consequence. – Richard E Feb 27 at 11:28
Uh oh, you've been Skeeted! :-) – cletus Feb 27 at 21:53

Your Answer

Get an OpenID
or

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