首页 > 其他 > 详细

获取枚举的title

时间:2015-07-14 17:00:44      阅读:181      评论:0      收藏:0      [点我收藏+]
 public class StringValue : System.Attribute
    {
        private readonly string _value;

        public StringValue(string value)
        {
            _value = value;
        }

        public string Value
        {
            get { return _value; }
        } 
    }
 public static class StringEnum
    {
        public static string GetStringValue(Enum value)
        {
            string output = null;
            Type type = value.GetType();
            FieldInfo fi = type.GetField(value.ToString());
            StringValue[] attrs =
                fi.GetCustomAttributes(typeof (StringValue),
                    false) as StringValue[];
            if (attrs != null && attrs.Length > 0)
            {
                output = attrs[0].Value;
            }
            return output;
        }
    } 

 

private enum SignMagnitude
{
  [StringValue("Negative")]
  Negative = -1,
}

使用方法:

StringEnum.GetStringValue(SignMagnitude.Negative);

获取枚举的title

原文:http://www.cnblogs.com/objectboy/p/4645619.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!