栏目分类:
子分类:
返回
名师互学网用户登录
快速导航关闭
当前搜索
当前分类
子分类
实用工具
热门搜索
名师互学网 > IT > 面试经验 > 面试问答

从枚举属性获取枚举

面试问答 更新时间: 发布时间: IT归档 最新发布 模块sitemap 名妆网 法律咨询 聚返吧 英语巴士网 伯小乐 网商动力

从枚举属性获取枚举

这是一个帮助方法,可以为您指明正确的方向。

protected Als GetEnumByStringValueAttribute(string value){    Type enumType = typeof(Als);    foreach (Enum val in Enum.GetValues(enumType))    {        FieldInfo fi = enumType.GetField(val.ToString());        StringValueAttribute[] attributes = (StringValueAttribute[])fi.GetCustomAttributes( typeof(StringValueAttribute), false);        StringValueAttribute attr = attributes[0];        if (attr.Value == value)        { return (Als)val;        }    }    throw new ArgumentException("The value '" + value + "' is not supported.");}

要调用它,只需执行以下操作:

Als result = this.GetEnumByStringValueAttribute<Als>(ComboBox.SelectedValue);

尽管这可能不是最好的解决方案,但它

Als
可能与之相关,您可能想使此代码可重复使用。您可能想要从我的解决方案中删除代码以返回属性值,然后
Enum.Parse
按您在问题中所使用的方式进行操作。



转载请注明:文章转载自 www.mshxw.com
本文地址:https://www.mshxw.com/it/408400.html
我们一直用心在做
关于我们 文章归档 网站地图 联系我们

版权所有 (c)2021-2022 MSHXW.COM

ICP备案号:晋ICP备2021003244-6号