68

我有一个枚举

enum myEnum2 { ab, st, top, under, below}

我想编写一个函数来测试给定值是否包含在 myEnum 中

类似的东西:

private bool EnumContainValue(Enum myEnum, string myValue)
{
     return Enum.GetValues(typeof(myEnum))
                .ToString().ToUpper().Contains(myValue.ToUpper()); 
}

但它不起作用,因为 myEnum 参数无法识别。

4

10 回答 10

97

为什么不使用

Enum.IsDefined(typeof(myEnum), value);

顺便说一句,创建通用Enum<T>类很好,它围绕调用Enum(实际上我想知道为什么没有将这样的东西添加到 Framework 2.0 或更高版本):

public static class Enum<T>
{
    public static bool IsDefined(string name)
    {
        return Enum.IsDefined(typeof(T), name);
    }

    public static bool IsDefined(T value)
    {
        return Enum.IsDefined(typeof(T), value);
    }

    public static IEnumerable<T> GetValues()
    {
        return Enum.GetValues(typeof(T)).Cast<T>();
    }
    // etc
}

这允许避免所有这些typeof东西并使用强类型值:

Enum<StringSplitOptions>.IsDefined("None")
于 2012-11-06T10:19:52.393 回答
62

无需自己编写:

    // Summary:
    //     Returns an indication whether a constant with a specified value exists in
    //     a specified enumeration.
    //
    // Parameters:
    //   enumType:
    //     An enumeration type.
    //
    //   value:
    //     The value or name of a constant in enumType.
    //
    // Returns:
    //     true if a constant in enumType has a value equal to value; otherwise, false.

    public static bool IsDefined(Type enumType, object value);

例子:

if (System.Enum.IsDefined(MyEnumType, MyValue))
{
    // Do something
}
于 2012-11-06T10:19:36.300 回答
11

就用这个方法

Enum.IsDefined 方法- 返回指定枚举中是否存在具有指定值的常量的指示

例子

enum myEnum2 { ab, st, top, under, below};
myEnum2 value = myEnum2.ab;
 Console.WriteLine("{0:D} Exists: {1}", 
                        value, myEnum2.IsDefined(typeof(myEnum2), value));
于 2012-11-06T10:20:43.747 回答
4

在这种情况下,您对 ToString() 所做的是:

Enum.GetValues(typeof(myEnum)).ToString()...相反,你应该写:

Enum.GetValues(typeof(myEnum).ToString()...

区别就在括号里...

于 2012-11-06T17:45:08.150 回答
3

也可以使用这个:

    enum myEnum2 { ab, st, top, under, below }
    static void Main(string[] args)
    {
        myEnum2 r;
        string name = "ab";
        bool result = Enum.TryParse(name, out r);
    }

结果将包含该值是否包含在枚举中。

于 2012-11-06T11:03:33.760 回答
3
   public static T ConvertToEnum<T>(this string value)
    {
        if (typeof(T).BaseType != typeof(Enum))
        {
            throw new InvalidCastException("The specified object is not an enum.");
        }
        if (Enum.IsDefined(typeof(T), value.ToUpper()) == false)
        {
            throw new InvalidCastException("The parameter value doesn't exist in the specified enum.");
        }
        return (T)Enum.Parse(typeof(T), value.ToUpper());
    }
于 2012-11-06T14:11:02.753 回答
3

如果您的问题是“我有一个枚举类型,enum MyEnum { OneEnumMember, OtherEnumMember }并且我想要一个函数来告诉这个枚举类型是否包含具有特定名称的成员,那么您正在寻找的是System.Enum.IsDefined方法:

Enum.IsDefined(typeof(MyEnum), MyEnum.OneEnumMember); //returns true
Enum.IsDefined(typeof(MyEnum), "OtherEnumMember"); //returns true
Enum.IsDefined(typeof(MyEnum), "SomethingDifferent"); //returns false

如果您的问题类似于“我有一个枚举类型的实例,它具有Flags属性,并且我想要一个函数来告诉该实例是否包含特定的枚举值,那么该函数看起来像这样:

public static bool ContainsValue<TEnum>(this TEnum e, TEnum val) where Enum: struct, IComparable, IFormattable, IConvertible
{
    if (!e.GetType().IsEnum)
        throw new ArgumentException("The type TEnum must be an enum type.", nameof(TEnum));

    dynamic val1 = e, val2 = val;
    return (val1 | val2) == val1;
}

希望我能帮上忙。

于 2017-03-27T18:32:59.770 回答
2

只需将枚举转换为:

string something = (string)myEnum;

现在比较随心所欲

于 2012-11-06T10:22:29.500 回答
2

使用正确的枚举名称 ( myEnum2)。

此外,如果您正在针对字符串值进行测试,您可能希望使用GetNames而不是GetValues.

于 2012-11-06T10:19:28.127 回答
1

我认为你在使用 ToString() 时出错了。

尝试进行 Linq 查询

private bool EnumContainValue(Enum myEnum, string myValue)
{
    var query = from enumVal in Enum.GetNames(typeof(GM)).ToList()
                       where enumVal == myValue
                       select enumVal;

    return query.Count() == 1;
}
于 2012-11-06T10:25:36.363 回答