namespace Utils { public static class ParseEnum { public static T Parse(string value) { return (T)Enum.Parse(typeof(T), value, true); } } }