What I'm trying to do is get Enum Type from string.
example:
//enum which can be changed I'll know only string name of it at runtime ("Color")
public enum Color
{
Black,
Green,
Yellow
}
I've maked some research on google but was unable to find something which do what i need. Anyone resolved this in past?