首页 > 代码库 > string 转换为枚举对应的值

string 转换为枚举对应的值

public static Object Parse(Type enumType,string value)

例如:(Colors)Enum.Parse(typeof(Colors), "Red")

string 转换为枚举对应的值