using System; using System.Collections.Generic; using System.ComponentModel; using System.Linq; using System.Reflection; using System.Web; namespace DSWeb.Areas.MvcShipping.Comm { public static class EnumExt { public static string GetDescription(this Enum value, bool nameInstend = true) { Type type = value.GetType(); string name = Enum.GetName(type, value); if (name == null) { return null; } FieldInfo field = type.GetField(name); DescriptionAttribute attribute = Attribute.GetCustomAttribute(field, typeof(DescriptionAttribute)) as DescriptionAttribute; if (attribute == null && nameInstend == true) { return name; } return attribute == null ? null : attribute.Description; } } }