How do you get the max value of an enum?
|
|
Enum.GetValues() seems to return the values in order, so you can do something like this:
|
||||||||||||
|
|
|
This is slighly nitpicky but the actual maximum value of any enum is Int32.MaxValue (assuming it's a enum derived from int). It's perfectly legal to cast any Int32 value to an any enum regardless of whether or not it actually declared a member with that value. Legal:
|
||
|
|
|
According to the Matt Hamilton's answer, I thought on creating an Extension method for it. Since ValueType is not accepted as a generic type delimiter, I didn't find a better way to restrict T to Enum. Any ideas would be really appreciated. PS. please ignore my VB implicitness, I love using VB in this way. Howeva, here it is: C#:
VB:
|
|||
|
|
|
|
There are methods for getting information about enumerated types under System.Enum. So, in a VB.Net project in Visual Studio I can type "System.Enum." and the intellisense brings up all sorts of goodness. One method in particular is System.Enum.GetValues(), which returns an array of the enumerated values. Once you've got the array, you should be able to do whatever is appropriate for your particular circumstances. In my case, my enumerated values started at zero and skipped no numbers, so to get the max value for my enum I just need to know how many elements were in the array. VB.Net code snippets:
|
||
|
|
|
|
Use the Last function could not get the max value. Use the "max" fuction could. Like:
|
||
|
|
|
|
After tried another time, I got thsi extension method:
|
||
|
|
