For example:
public enum Unit{
KW,
kV,
V,
Hz,
%V
}
In this case % is a special character. So, how can I put this char in a enum?
|
For example:
In this case % is a special character. So, how can I put this char in a enum? |
|||||||
|
|
Enum members shouldn't be used for user interface display purposes. They should be mapped to a string in order to get displayed. You can create a string array (or a dictionary) that maps each enum member to a string for user interaction.
|
|||||||||||||
|
|
Even if you could do that (and it looks you can't), it probably wouldn't be a good idea, because you'd be mixing how the enum should be displayed with the program code to manipulate it. A better option would be to define an attribute (or use existing
|
|||||||
|
|
I'm not sure why you are after special characters in your enum, however if you are like me and you need to display a better name than perhaps type using the XmlEnumAttribute values for an Enum Check out my blog for more details |
||||
|
|
|
This answer is related to the one from @Coppermill I feel using the DescriptionAttribute is more semantically correct when working with Enums
Then I read from it like such
.
Then usage would be |
|||
|
|
|
Sorry, but I just realized that I didn't answer the question. I will not delete my answer because someone may find these code snippets helpful. I agree completely with Tomas Petricek, so I will not repeat his answer. Here is my solution to the problem. I been using this code for about five years. I decided to create a custom attribute in order to use the DisplayName attribute for captions and such.
|
||||
|
|
|
Some can state that Enumerations are for Code only, I must disagree and I use to Code and Display functionality. In your particular case I would use the full word
So I can use them in a Dropdown for example as (when I need to create a new item, all I need to do is append that item into the Enumeration...
I tend to use Space Separator, but I normally use underscore to make spaces, like
and the DropDownList item would be
when I want to set the Type from the DropDown, I use the Parse
off course, if you use Separator
Some rules to have in consideration to write better code
As a reminder
I hope I can help someone. |
|||||||||||||
|