Does anyone know how to transform a enum value to a human readable value?
Sample:
ThisIsValueA to "This is Value A".
|
Does anyone know how to transform a enum value to a human readable value? Sample:
|
||||
|
|
|
Converting this from a vb code snippet that a certain Ian Horwill left at a blog post long ago... i've since used this in production successfully.
(requires, 'using System.Text.RegularExpressions;') Thus:
Would return,
It's much simpler, and less redundant than providing Description attributes. Attributes are useful here only if you need to provide a layer of indirection (which the question didn't ask for). |
||||
|
|
|
The .ToString on Enums is relatively slow in C#, comparable with GetType().Name (it might even use that under the covers). If your solution needs to be very quick or highly efficient you may be best of caching your conversions in a static dictionary, and looking them up from there. A small adaptation of @Leon's code to take advantage of C#3. This does make sense as an extension of enums - you could limit this to the specific type if you didn't want to clutter up all of them.
|
||||
|
|
|
Most examples of this that I've seen involve marking your enum values up with [Description] attributes and using reflection to do the "conversion" between the value and the description. Here's an old blog post about it: http://geekswithblogs.net/rakker/archive/2006/05/19/78952.aspx |
|||
|
|
|
You can inherit from the "Attribute" class of System.Reflection to create your own "Description" class. Like this (from here):
|
|||
|
|
You can also take a look at this article: http://www.codeproject.com/KB/cs/enumdatabinding.aspx It's specifically about data binding, but shows how to use an attribute to decorate the enum values and provides a "GetDescription" method to retrieve the text of the attribute. The problem with using the built-in description attribute is that there are other uses/users of that attribute so there is a possibility that the description appears where you don't want it to. The custom attribute solves that issue. |
|||
|
|
|
I found it best to define your enum values with an under score so ThisIsValueA would be ThisIsValueA then you can just do a enumValue.toString().Replace(""," ") where enumValue is your varible. |
|||
|
|