I have a enum containing the following (for example):
UnitedKingdom, UnitedStates, France, Portugal
In my code I use Country.UnitedKingdom but I want to have the value be UK if I assign it to a string for example.
Is this possible?
|
8
|
|
|
|
|
|
You can't assign an enum value to a string to start with. You'd have to call Two options suggest themselves:
Comments about each of them... Sample code for
You might want to put the logic of
Then you could write:
As mentioned in the comments, the default dictionary comparer will involve boxing, which is non-ideal. For a one-off, I'd live with that until I found it was a bottleneck. If I were doing this for multiple enums, I'd write a reusable class. Switch statement I agree with yshuditelu's answer suggesting using a
You can add more cases to this without it getting too huge, and it's easy to cast your eyes across from enum value to the return value.
The point Rado made about the code for |
||||||||||||||
|
|
|
You could create an extension method Example:
|
||||||||||
|
|
|
I prefer to use the DescriptionAttribute on my enums. Then, you can use the following code to grab that description from the enum.
And then to get my bound enum list, its simply a call to
To get a single enum's description, you'd just use the extension method like this
|
|||
|
|
|
|
Pseudo code:
|
||||
|
|
|
One other possibility that hasn't been mentioned is something like this:
From this point you could add more properties, but beware of how much you add to the class, and how many static members you add, as the memory bloat it adds could make it not worth it. I don't think there are many cases where this strategy is the best approach, but it is an option to be aware of when attempting to add properties or attributes to something you want to be able to treat as essentially an enum. |
||||||
|
|
|
Just use the DescriptionAttribute No need to create a dictionary if you only need to get a String representation for your enum values. See this example [EDIT] Oh ... forgot to mention that it is more reusable than dictionaries, since you only need one common util class to help with getting the description and then all you need to do is add the DescriptionAttribute next time you add an enum value or you create a new enum with the same requirements. In the dictionary/switch solution, it is harder to maintain and it gets messy once you have many enum types. |
|||
|
|
|
I had to leave my work on this project for a while, and having come back to it, I had a moment of inspiration. Rather than an enum, I created a new class like so:
This way I can use Country.UnitedKingdom in my code and the value "UK" will be used. I'm just posting this answer as an alternative solution. Neil |
||
|
|
|
|
|
||
|
|
|
|
Whenever I see an enum I feel that the code should be refactored. Why not make a Country class and add methods to do some of the obstacles you are trying to get around. Assigning values to an enum is an even bigger code smell. Why the downvotes? I think it is pretty widely accepted that using a polymorphic approach is better than using an enum. There is zero reason to use an enum when you can use the ValueObject design instead. Here is a good blog post on the topic: http://devpinoy.org/blogs/cruizer/archive/2007/09/12/enums-are-evil.aspx |
|||
|
|
|
The following solution works (compiles and runs). I see two issues: 1 - You would have to make sure the enums are in sync (An automated test can do that for you.) 2 - You would be relying in the fact that enums are not type safe in .NET
|
||||||
|