vote up 0 vote down star

Hi guys, How can I parse a string in VB.NET to enum value?

Example I have this enum:

Public Enum Gender
    NotDefined
    Male
    Female
End Enum

how can I convert a string "Male" to the Gender enum's Male value?

flag

2 Answers

vote up 3 vote down check
Dim val = DirectCast([Enum].Parse(GetType(Gender), "Male"), Gender)
link|flag
vote up 5 vote down

See Enum.TryParse.

link|flag
There is only Parse() method. Not sure where is the Enum.TryParse() method? – David.Chu.ca Sep 15 at 3:03

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.