I have an enum like below. Want to get the 'string' value. I do
(string)OrderFlag.Catalog
but get an error: cannot convert type Fulfillment.OrderFlag to string.
I have to use int values of enum??
public enum OrderFlag
{
Reserved = 'R',
Catalog = 'C'
}