I have a following enum
[Flags]
public enum CreditCardType
{
None = 0x0,
[EnumLabel("Visa")] Visa = 0x1,
[EnumLabel("Maestro")] Maestro = 0x2,
[EnumLabel("Master Card")] Master = 0x4,
}
The user replies to these options as string. I am trying to convert string to enum like
CreditCardType=(CreditCardType)Enum.Parse(typeof(CreditCardType),"Visa");
On this I get the following error. Requested value "Visa" was not found.
Where I am wrong? Please help.
Enumorenumin the type definition? – codekaizen Jun 28 '12 at 6:39(CreditCardType)Enum.Parse(typeof(CreditCardType),"Master Card"). – Porges Jun 28 '12 at 6:41[EnumLabel()], which I removed). – MD.Unicorn Jun 28 '12 at 6:44