Why is Enum.GetValues() not available in the Windows Phone 7 API, and does this mean I should generally shy away from Enums in favor of structs or other mechanisms.
The "Why" is because WP7 is based on the "Compact Framework" - to save on resources, the compact framework does not contain every method in the full framework - and Enum.GetValues() was one of those omitted.
No - no particular reason. I'd recommend you continue to use enum's where you find them the most appropriate programming solution. |
|||
|
|
|
I've run into this. For my purposes I was able to use reflection
Really depends what you are doing with them though. |
|||||||||||
|
|
I have addressed this issue in a blog post, hope it helps! http://cjbhaines.wordpress.com/2011/07/12/enum-getvalues-in-silverlight/ |
|||
|
|