I want to get the content of Enum type by corresponding value.
For example
Code:
public enum color
{
    red = 1 , yellow = 2 , green = 3

}
How can I get the color via value 1 , 2 , 3.