I'm still searching, but there's a crap load of posts with "enum" and "value" in it... so I'm posting this as a short cut while I still attempt to search.

Short description: I have a file that will have a field where the value will be "string" or "date" or "number" ... I need to translate these into an enum type:
Company.NameSpace.Assembly.DataTypes.String
Company.NameSpace.Assembly.DataTypes.Date
Company.NameSpace.Assembly.DataTypes.Number
Company.NameSpace.Assembly.DataTypes.Boolean
and so on... so that I can pass it to another method that's expecting the enumeration value as a parameter.

I know there's a way to go from the value to get to the "text" of the enum... is there a way to go the other way?

-tg