|
2 |
edited title
|
||
How to convert from System.Enum to base integer? |
||||
|
1 |
|
||
How to convert from System.Enum base integer?I'd like to create a generic method for converting any System.Enum derived type to its corresponding integer value, without casting and preferably without parsing a string. Eg, what I want is something like this:
But this doesn't appear to work. Resharper reports that you can not cast expression of type 'System.Enum' to type 'int'. Now I've come up with this solution but I'd rather have something more efficient.
Any suggestions?
|
||||
