Possible Duplicate:
How do I Convert a string to an enum in C#?
I have an enum of type int:
public enum BlahType
{
blah1 = 1,
blah2 = 2
}
If I have a string:
string something = "blah1"
How can I convert this to BlahType?
I have an enum of type int:
If I have a string:
How can I convert this to BlahType? |
||||
|
|
This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.
|
You want Enum.Parse
|
|||
|
|
|
I use a function like this one
And you can call it like this
|
|||
|
|
|
I use this function to convert a string to a enum; then you can cast to int or whatever.
|
|||||||||
|
If you are not certain that the conversion will succeed - then use TryParse instead. |
||||
|
|