Enum.GetValues missing
-
So far, I've been able to find a workaround for any missing functionality in Silverlight, until now. Anyone have any idea how I can get all of the values of an enumeration? And please don't suggest that I iterate from 0 to X and use the IsDefined method - that's simply not a practical solution. Thanks in advance! Terry
-
So far, I've been able to find a workaround for any missing functionality in Silverlight, until now. Anyone have any idea how I can get all of the values of an enumeration? And please don't suggest that I iterate from 0 to X and use the IsDefined method - that's simply not a practical solution. Thanks in advance! Terry
Here's a couple examples: Binding RadioButton Groups to Enumeration Properties[^] (second post) Enumeration Binding in Silverlight[^]
Mark Salsbery Microsoft MVP - Visual C++ :java:
-
Here's a couple examples: Binding RadioButton Groups to Enumeration Properties[^] (second post) Enumeration Binding in Silverlight[^]
Mark Salsbery Microsoft MVP - Visual C++ :java:
Ah, of course. Thank you so much.