I have the following enumeration:
public enum AuthenticationMethod { FORMS = 1, WINDOWSAUTHENTICATION = 2, SINGLESIGNON = 3 }
T
Just use the ToString() method
ToString()
public enum any{Tomato=0,Melon,Watermelon}
To reference the string Tomato, just use
Tomato
any.Tomato.ToString();