January 2009
M T W T F S S
« Dec   May »
 1234
567891011
12131415161718
19202122232425
262728293031  

How do I convert an Enum value to a String?

I have an enum SortFilter, which looks like following:

public enum SortFilter

{

FirstName,

LastName,

Age,

Experience

}

Now, let’s say I want to display the string value of enum in some control. For that, I will have to convert Enum value to string. [...]