如何确定是否为变量分配了枚举中存在的值?

时间:2019-04-25 13:26:48

标签: c#

我有这个枚举:

namespace J.Enums
{
    public enum TH
    {
        Light = 0,
        Dark = 1
    }

    public static partial class Extensions
    {
        public static string Text(this TH theme)
        {
            switch (theme)
            {
                default:
                case TH.Light: return "Light";
                case TH.Dark: return "Dark";
            }
        }

        public static TH ToTheme(this string theme)
        {
            switch (theme)
            {
                default:
                case "Light": return TH.Light;
                case "Dark": return TH.Dark;
            }
        }
    }
}

如果我有一个变量a,如下所示:

var a = 88;

如何确定a的值是否为Enum的有效值?在这种情况下,不会。

1 个答案:

答案 0 :(得分:6)

var isDefined = Enum.IsDefined(typeof(TH), a);