如何获取枚举的所有值?

发布于 2024-07-18 08:43:27 字数 1328 浏览 4 评论 0原文

我想创建一个接受 Enum 类型的方法,并返回数组中的所有成员,如何创建这样的函数?

举例来说,我有这两个枚举:

public enum Family
{ 
   Brother,
   Sister,
   Father
}

public enum CarType
{ 
   Volkswagen,
   Ferrari,
   BMW
}

如何创建函数 GetEnumList 以便它为

  1. 第一个返回 {Family.Brother, Family.Sister, Family.Father}案件。
  2. {CarType.Volkswagen, CarType.Ferrari, CarType.BMW} 为第二种情况。

我尝试过:

private static List<T> GetEnumList<T>()
{
    var enumList = Enum.GetValues(typeof(T))
        .Cast<T>().ToList();
    return enumList;
}

但我收到了 InvalidOperationException

System.InvalidOperationException:无法对 ContainsGenericParameters 为 true 的类型或方法执行后期绑定操作。 在 System.Reflection.RuntimeMethodInfo.ThrowNoInvokeException() 在System.Reflection.RuntimeMethodInfo.Invoke(对象obj,BindingFlags invokeAttr,Binder活页夹,Object []参数,CultureInfo文化,布尔skipVisibilityChecks) 在System.Reflection.RuntimeMethodInfo.Invoke(对象obj,BindingFlags invokeAttr,Binder活页夹,Object []参数,CultureInfo文化) 在 System.Reflection.MethodBase.Invoke(Object obj, Object[] 参数)

编辑:上面的代码工作正常 - 我得到异常的原因是因为探查器导致了我的错误。 感谢大家提供的解决方案。

I want to create a method that takes in an Enum type, and returns all it's members in an array, How to create such a function?

Take for example, I have these two enums:

public enum Family
{ 
   Brother,
   Sister,
   Father
}

public enum CarType
{ 
   Volkswagen,
   Ferrari,
   BMW
}

How to create a function GetEnumList so that it returns

  1. {Family.Brother, Family.Sister, Family.Father} for the first case.
  2. {CarType.Volkswagen, CarType.Ferrari, CarType.BMW} for the second case.

I tried :

private static List<T> GetEnumList<T>()
{
    var enumList = Enum.GetValues(typeof(T))
        .Cast<T>().ToList();
    return enumList;
}

But I got an InvalidOperationException:

System.InvalidOperationException : Late bound operations cannot be performed on types or methods for which ContainsGenericParameters is true.
at System.Reflection.RuntimeMethodInfo.ThrowNoInvokeException()
at System.Reflection.RuntimeMethodInfo.Invoke(Object obj, BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture, Boolean skipVisibilityChecks)
at System.Reflection.RuntimeMethodInfo.Invoke(Object obj, BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
at System.Reflection.MethodBase.Invoke(Object obj, Object[] parameters)

Edit: The above code is working fine-- the reason I got an exception was because profiler caused me the bug. Thank you all for your solutions.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(5

雾里花 2024-07-25 08:43:27

这是完整的代码:

    public enum Family
    {
        Brother,
        Sister,
        Father
    }

    public enum CarType
    {
        Volkswagen,
        Ferrari,
        BMW
    }


    static void Main(string[] args)
    {
        Console.WriteLine(GetEnumList<Family>());
        Console.WriteLine(GetEnumList<Family>().First());
        Console.ReadKey();
    }

    private static List<T> GetEnumList<T>()
    {
        T[] array = (T[])Enum.GetValues(typeof(T));
        List<T> list = new List<T>(array);
        return list;
    }

Here is the full code:

    public enum Family
    {
        Brother,
        Sister,
        Father
    }

    public enum CarType
    {
        Volkswagen,
        Ferrari,
        BMW
    }


    static void Main(string[] args)
    {
        Console.WriteLine(GetEnumList<Family>());
        Console.WriteLine(GetEnumList<Family>().First());
        Console.ReadKey();
    }

    private static List<T> GetEnumList<T>()
    {
        T[] array = (T[])Enum.GetValues(typeof(T));
        List<T> list = new List<T>(array);
        return list;
    }
喜你已久 2024-07-25 08:43:27

与其他答案相同,但针对现代 C# 进行了更新:

public static List<TEnum> GetEnumList<TEnum>() where TEnum : Enum 
    => ((TEnum[])Enum.GetValues(typeof(TEnum))).ToList();

Same as the other answer but updated for modern C#:

public static List<TEnum> GetEnumList<TEnum>() where TEnum : Enum 
    => ((TEnum[])Enum.GetValues(typeof(TEnum))).ToList();
情丝乱 2024-07-25 08:43:27
(Family[])Enum.GetValues(typeof(Family))
(Family[])Enum.GetValues(typeof(Family))
幸福%小乖 2024-07-25 08:43:27

像这样?

private static List<string> GetEnumList<T>()
{
    return Enum.GetNames( typeof( T ) )
           .Select(s => typeof(T).Name + "." + s).ToList();
}

Like this?

private static List<string> GetEnumList<T>()
{
    return Enum.GetNames( typeof( T ) )
           .Select(s => typeof(T).Name + "." + s).ToList();
}
ゝ杯具 2024-07-25 08:43:27

从 .NET 5 开始,您可以执行以下操作:

public static T[] GetAll<T>() where T : struct, Enum
{
    return Enum.GetValues<T>();
}

Since .NET 5 you can do this:

public static T[] GetAll<T>() where T : struct, Enum
{
    return Enum.GetValues<T>();
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文