Du kannst nicht mehr als 25 Themen auswählen Themen müssen entweder mit einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.

29 Zeilen
779B

  1. using System;
  2. using System.Collections.Generic;
  3. using System.ComponentModel;
  4. using System.Linq;
  5. using System.Reflection;
  6. using System.Text;
  7. using System.Threading.Tasks;
  8. namespace GpsCardGatewayPosition.Common.Extension
  9. {
  10. public static class EnumExt
  11. {
  12. public static string ToDescription(this Enum value)
  13. {
  14. Type type = value.GetType();
  15. string name = Enum.GetName(type, value);
  16. if (name == null)
  17. {
  18. return null;
  19. }
  20. FieldInfo field = type.GetField(name);
  21. DescriptionAttribute attribute = System.Attribute.GetCustomAttribute(field, typeof(DescriptionAttribute)) as DescriptionAttribute;
  22. return (attribute?.Description) + "";
  23. }
  24. }
  25. }