12345678910111213141516171819202122232425262728293031 |
- using System;
- using System.Collections.Generic;
- using System.ComponentModel.DataAnnotations;
- using System.Linq;
- using System.Reflection;
- using System.Text;
- namespace GxPress.Common.Extensions
- {
- public static class EnumExtensions
- {
- /// returns the localized Name, if a [Display] attribute is applied to the enum member
- /// returns null if there is no attribute
- public static string GetDisplayName(this Enum value) => value.GetEnumMemberAttribute<DisplayAttribute>()?.GetName();
- public static string GetValue(this Enum value) => Enum.GetName(value.GetType(), value);
- public static IEnumerable<Enum> GetEnums(this Enum e)
- {
- return Enum.GetValues(e.GetType()).Cast<Enum>();
- }
- private static TAttribute GetEnumMemberAttribute<TAttribute>(this Enum value) where TAttribute : Attribute =>
- value.GetType().GetEnumMemberAttribute<TAttribute>(value.ToString());
- private static TAttribute GetEnumMemberAttribute<TAttribute>(this Type enumType, string enumMemberName)
- where TAttribute : Attribute =>
- enumType.GetMember(enumMemberName).Single().GetCustomAttribute<TAttribute>();
- }
- }
|