Beispiel #1
0
        /// <summary>
        /// 描  述:根据类型获取Remark
        /// 作  者:
        /// 时  间:
        /// 修  改:
        /// 原  因:
        /// </summary>
        /// <param name="type"></param>
        /// <returns></returns>
        public static string GetTypeRemark(Type type)
        {
            string key = string.Format("{0}_Remark", type.Name);
            string result;

            if (RemarkAttribute._cache.ContainsKey(key))
            {
                result = RemarkAttribute._cache[key];
            }
            else
            {
                string text = string.Empty;
                try
                {
                    object[] customAttributes = type.GetCustomAttributes(typeof(RemarkAttribute), false);
                    object[] array            = customAttributes;
                    for (int i = 0; i < array.Length; i++)
                    {
                        RemarkAttribute remarkAttribute = (RemarkAttribute)array[i];
                        text = remarkAttribute.Remark;
                    }
                    if (!string.IsNullOrEmpty(text))
                    {
                        RemarkAttribute._cache.Add(key, text);
                    }
                }
                catch (Exception ex)
                {
                    throw ex;
                }
                result = text;
            }
            return(result);
        }
Beispiel #2
0
        /// <summary>
        /// 描  述:获取枚举的中文说明
        /// 作  者:
        /// 时  间:
        /// 修  改:
        /// 原  因:
        /// </summary>
        /// <param name="value"></param>
        /// <returns></returns>
        public static string GetEnumRemark(System.Enum value)
        {
            string key = string.Format("Enum_{0}", value);
            string result;

            if (RemarkAttribute._cache.ContainsKey(key))
            {
                result = RemarkAttribute._cache[key];
            }
            else
            {
                Type      type  = value.GetType();
                FieldInfo field = type.GetField(value.ToString());
                string    text  = string.Empty;
                try
                {
                    object[] customAttributes = field.GetCustomAttributes(typeof(RemarkAttribute), false);
                    object[] array            = customAttributes;
                    for (int i = 0; i < array.Length; i++)
                    {
                        RemarkAttribute remarkAttribute = (RemarkAttribute)array[i];
                        text = remarkAttribute.Remark;
                    }
                    if (!string.IsNullOrEmpty(text))
                    {
                        RemarkAttribute._cache.Add(key, text);
                    }
                }
                catch (Exception ex)
                {
                    throw ex;
                }
                result = text;
            }
            return(result);
        }