c#字符串转换为枚举类型

string str = "枚举字符串";
EnumTest test = (EnumTest)Enum.Parse(typeof(EnumTest), str);

你可能感兴趣的:(c#,枚举,字符串)