I have an enum construct like this:
public enum EnumDisplayStatus
{
None=1,
Visible=2,
Hidden=3,
MarkedForDeletion=4
}
In my database, the enumerations are referenced by value. My question is, how can i turn the number representation of the enum, back to the string name. for example, given '2' the result should be 'visible'.