作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
在下面的代码中,我只是将一个字符串(例如“medium”)转换为其枚举值。我需要做的不是将 Opacity 作为固定的 Enum 类型,而是将其作为参数传入,以便该函数可以对任何 Enum 进行操作。这似乎比我预期的要困难得多,即“Enum MyEnum”不起作用。有人解决吗?
public enum Opacity
{
Low,
Medium,
High
}
public static Enum StringToEnum(String str)
{
return (Opacity)Enum.Parse(typeof(Opacity), str, true); // Case insensitive
}
最佳答案
public static T StringToEnum<T>(String str) where T : struct
{
return (T)Enum.Parse(typeof(T), str, true);
}
关于c# - 如何将枚举作为参数传递?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7056790/
我是一名优秀的程序员,十分优秀!