EnumExtenstions.cs 1.2 KB

12345678910111213141516171819202122232425262728293031
  1. using System;
  2. using System.Collections.Generic;
  3. using System.ComponentModel.DataAnnotations;
  4. using System.Linq;
  5. using System.Reflection;
  6. using System.Text;
  7. namespace GxPress.Common.Extensions
  8. {
  9. public static class EnumExtensions
  10. {
  11. /// returns the localized Name, if a [Display] attribute is applied to the enum member
  12. /// returns null if there is no attribute
  13. public static string GetDisplayName(this Enum value) => value.GetEnumMemberAttribute<DisplayAttribute>()?.GetName();
  14. public static string GetValue(this Enum value) => Enum.GetName(value.GetType(), value);
  15. public static IEnumerable<Enum> GetEnums(this Enum e)
  16. {
  17. return Enum.GetValues(e.GetType()).Cast<Enum>();
  18. }
  19. private static TAttribute GetEnumMemberAttribute<TAttribute>(this Enum value) where TAttribute : Attribute =>
  20. value.GetType().GetEnumMemberAttribute<TAttribute>(value.ToString());
  21. private static TAttribute GetEnumMemberAttribute<TAttribute>(this Type enumType, string enumMemberName)
  22. where TAttribute : Attribute =>
  23. enumType.GetMember(enumMemberName).Single().GetCustomAttribute<TAttribute>();
  24. }
  25. }