I have the following enum
public enum myEnum
{
ThisNameWorks,
This Name doesn't work
Neither.does.this;
}
Is it not possible to have enums with "friendly names" ?
Thanks
feedback
|
|
Enum value names must follow the same naming rules as normal variables in C#, therefore only first name is correct. | |||||
feedback
|
|
You could use the
You can use it like that :
| |||||||||||
feedback
|
|
No, but you can use the DescriptionAttribute to accomplish what you're looking for. | |||
|
feedback
|
|
If you have the following enum:
You can declare Extension Methods for
With this Extension Method, the following is now legal:
Hope this helps!! | |||||||||||||
feedback
|
|
You can use Discription Attribute to get that friendly name. You can use code below :
| |||
|
feedback
|
|
One problem with this trick is that description attribute cannot be localized. I do like a technique by Sacha Barber where he creates his own version of Description attribute which would pick up values from the corresponding resource manager. http://www.codeproject.com/KB/WPF/FriendlyEnums.aspx Although the article is around a problem that's generally faced by WPF developers when binding to enums, you can jump directly to the part where he creates the LocalizableDescriptionAttribute. | |||
|
feedback
|
|
Some great solutions have already been posted. When I encountered this problem, I wanted to go both ways: convert an enum into a description, and convert a string matching a description into an enum. I have two variants, slow and fast. Both convert from enum to string and string to enum. My problem is that I have enums like this, where some elements need attributes and some don't. I don't want to put attributes on elements that don't need them. I have about a hundred of these total currently:
The first method for dealing with this is slow, and is based on suggestions I saw here and around the net. It's slow because we are reflecting for every conversion:
The problem with this is that you're doing reflection every time. I haven't measured the performance hit from doing so, but it seems alarming. Worse we are computing these expensive conversions repeatedly, without caching them. Instead we can use a static constructor to populate some dictionaries with this conversion information, then just look up this information when needed. Apparently static classes (required for extension methods) can have constructors and fields :)
Look how tight the conversion methods are now. The only flaw I can think of is that this requires all the converted enums to be in the current assembly. Also, I only bother with exported enums, but you could change that if you wish. This is how to call the methods
| |||
|
feedback
|
|
They follow the same naming rules as variable names. Therefore they should not contain spaces. Also what you are suggesting would be very bad practice anyway. | |||
|
feedback
|
|
Enum names live under the same rules as normal variable names, i.e. no spaces or dots in the middle of the names... I still consider the first one to be rather friendly though... | |||
|
feedback
|
| |||||
feedback
|
|
check this post http://stackoverflow.com/questions/1415001/displaying-enumeration-values-in-a-datagridcombobox-problem | |||
|
feedback
|
|
I suppose that you want to show your enum values to user therefore you want them to have some friendly name . Here's my suggestion : Use an enum type pattern.Although you should make some effort implementing it but it really worth it.
| |||
|
feedback
|
|
This is a terrible idea, but it does work.
Requirements
Why this is a bad idea (a few reasons)
| |||
|
feedback
|
|
After reading many resources regarding this topic, including StackOverFlow, I find that not all solutions are working properly. Below is our attempt to fix this. Basically, We take the friendly name of an Enum from a DescriptionAttribute if it exists. Next version, we will use another Attribute to flag whether we can/should take the friendly name from a localizable resource file. Below are the test cases. Please report if you have another test case that do not pass.
| |||
|
feedback
|