What's a quick and easy way to cast an int to an enum in c#?
|
|
From a string:
From an int:
|
||
|
|
|
|
Just cast it:
You can check if it's in range using Enum.IsDefined:
|
||||||
|
|
|
|
||
|
|
|
|
Using reflection, how can I convert from a number to a enum witch type can be passed as method parameter? thanks |
||||
|
