>> there is no path I can see that does not return a value
> How about:
[quoted text clipped - 6 lines]
>
> Marc
Ooh - I didn't know you could cast an int to an enum even if it was out of
range
Thanks Marc
Arne Vajhøj - 10 Sep 2007 01:53 GMT
>>> there is no path I can see that does not return a value
>> How about:
[quoted text clipped - 7 lines]
> Ooh - I didn't know you could cast an int to an enum even if it was out of
> range
C# enum is almost just an int.
If I were to guess at why, then I would say that it is necesarry
to support using multiple values in one variable (flags).
Arne