从枚举

时间:2016-07-05 10:10:04

标签: c# .net enums

我试图从枚举中存储和检索其他信息。我最终得到了两种方法。 第一种方法是使用自定义属性。 https://stackoverflow.com/a/22054994/5078531 https://stackoverflow.com/a/35040378/5078531

public class DayAttribute : Attribute
{
    public string Name { get; private set; }

    public DayAttribute(string name)
    {
        this.Name = name;
    }
}

enum Days
{
    [Day("Saturday")]
    Sat,
    [Day("Sunday")]
    Sun
}

public static TAttribute GetAttribute<TAttribute>(this Enum value)
        where TAttribute : Attribute
    {
        var enumType = value.GetType();
        var name = Enum.GetName(enumType, value);
        return enumType.GetField(name).GetCustomAttributes(false).OfType<TAttribute>().SingleOrDefault();
    }

我在这里找到的第二种方法是在枚举上编写扩展方法。 https://stackoverflow.com/a/680515/5078531

public enum ArrowDirection
{
    North,
    South,
    East,
    West
}

public static class ArrowDirectionExtensions
{
     public static UnitVector UnitVector(this ArrowDirection self)
     {         
         switch(self)
         {
             case ArrowDirection.North:
                 return new UnitVector(0, 1);
             case ArrowDirection.South:
                 return new UnitVector(0, -1);
             case ArrowDirection.East:
                 return new UnitVector(1, 0);
             case ArrowDirection.West:
                 return new UnitVector(-1, 0);
             default:
                 return null;
         }
     }
}

如果我正在寻找性能,我应该选择哪种方法?或者还有其他有效的方法缺失吗?

2 个答案:

答案 0 :(得分:3)

两者都是实施它的有效方式;和许多其他方式一样。就个人而言,我喜欢第一个方便。通过仅处理属性一次并且存储(可能在{{1}}字段中)可以减轻反射的性能损失 - 如果枚举值是连续的并且基于0,则可能作为平面数组;否则,也许在字典中。

答案 1 :(得分:0)

如果你喜欢它可以存储其他枚举和属性类型,你可以使DayaAttributeCache更通用。我只是快速地展示了一种缓存方法。枚举值必须从0开始连续,但如果需要,可以更改以处理该情况。

public static class DaysAttributeCache
{
    private static readonly string[] Cache;

    static DaysAttributeCache()
    {
        Type enumType = typeof(Days);
        Cache = new string[Enum.GetValues(enumType).Length];

        foreach (Enum value in Enum.GetValues(enumType))
        {
          var name = Days.GetName(enumType, value);

          DayAttribute attribute = enumType
              .GetField(name)
              .GetCustomAttributes(false)
              .OfType<DayAttribute>()
              .SingleOrDefault();

          string weekDay = attribute?.Name;
          Cache[((IConvertible)value).ToInt32(CultureInfo.InvariantCulture)] = weekDay;
        }
    }

    public static string GetWeekday(this Days value)
    {
        return Cache[(int)value];
    }
  }

这样称呼......

string saturday = Days.Sat.GetWeekday();