JoelDixon.com

"My cat's name is Mittens." - Ralph Wiggum, The Simpsons 1F17

Blog
General
Travel
Hockey
Technical
Gaming
Catalogue
Movies
TV Shows
Music
Video Games
Stats
Pages
Travel Plans
Live Music
Phone History
Things to Do
Links
About


Blog Archive
Current Blogs
June 2011 (1)
January 2011 (1)
2010 (18)
2009 (28)
2008 (25)
2007 (67)
2006 (23)
2005 (32)
2004 (10)

Blog Tags
General
10 in '10 (4)
Books (1)
DVDs (3)
Funny (13)
Gadgets (5)
Hawt (1)
Movies (14)
Music (7)
Pets (4)
Recipe (16)
Running (3)
TV Shows (2)
Web (29)
Travel
Calgary (2)
Edmonton (12)
Kuala Lumpur (1)
New York (7)
Niagara Falls (2)
Phuket (2)
Pittsburgh (5)
Washington (4)
Hockey
Pittsburgh Penguins (25)
Technical
.NET (3)
Java (4)
Software (3)
Work (2)
Gaming
Commodore 64 (2)
Master System (1)
Mega Drive (1)
Rock Band (1)
Xbox 360 (16)
XNA (1)

The rarely updated blog of Joel Dixon

Viewing blogs tagged XNA

Sunday, February 01, 2009

Enum Members and the .NET Compact Framework

# Posted by Joel Dixon at 01/02/2009 16:37:16

When working on my latest weekend coding project, I am occasionally limited by the methods offered (and not offered) by the .NET Compact Framework (XNA projects are compiled against the compact framework). Usually these limitations are pretty minor (i.e. as TryParse is not available, I need to put a try-catch block around a regular Parse call).

Today I stumbled over another unavailable method - Enum.GetNames(). The GetNames method is called when using Reflection to determine, at runtime, the elements in an enumeration. It took a bit of hunting and experimenting - but here's a Compact Framework-friendly method of achieving the same thing:

C# Code:

enum ShakeFlavour
{
Chocolate,
Strawberry,
Vanilla
}

Type type = typeof(ShakeFlavour);

// Print the list of enum elements - Public and Static BindingFlags required
// to skip internal "value__" field
FieldInfo[] fields = type.GetFields(BindingFlags.Public | BindingFlags.Static);
foreach (FieldInfo info in fields)
{
Console.WriteLine(info.Name);
}

// Parse an enum element from a string
string myFlavour = "Strawberry";
try
{
ShakeFlavour enumObject = (ShakeFlavour)Enum.Parse(type, myFlavour, true);
Console.WriteLine("Shake Flavour: {0}", enumObject);
}
catch (Exception ex)
{
Console.WriteLine("enum element not recognised");
}

It's pretty good that Reflection is included in the compact framework - but it's slightly surprising that they couldn't fit in the Enum.GetNames() method as well.




Blog Search

Advanced Search


Recent Blogs
Log o' cats
I'm number 1!
Resolute
Phuket, Thailand - 2010
Mr. Potato Head Mashups
Random Travel #2 - Thailand
You have been the ones, you have been the ones for me.
Balls
Caramelised Pumpkin Risotto
Malaysian Vegetable Curry

Feed
Subscribe to feed Blog Entries

Add to Google
Add to My Yahoo!
Add to Netvibes

Recent Comments
Log o' cats
posted 7 months ago by joeldixon
ha ha - I didn't mention that I bought two copies of Lock, Stock after the creation of this catalogue ... link

Log o' cats
posted 7 months ago by Brad
I made a DVD list for the same reason and just last week bought The Green Mile on Blu-ray before ... link

Balls
posted 2 years ago by joeldixon
Exactly. What's wrong with the kids today when they can't spell genitals? And you and I have been using ... link

Balls
posted 2 years ago by abrereton
I'm just glad that they spelt it correctly in the end. link

Kuala Lumpur, Malaysia - 2010
posted 2 years ago by joeldixon
Definitely, you have to let us know when you're free for UBs! link


Comment Standings
1. the man with no name (45)
2. Hoff (39)
3. Gav (27)
4. Hitman (26)
5. Brad (23)
6. Eryc-Ads (13)
7. Deep Lurker (6)
8. thefury (5)
9. Dieter (4)
10. Zelks (4)
About This Site | Contact Me