如何在 C# 中循环遍历所有枚举值?

发布于 2024-07-23 01:23:46 字数 344 浏览 2 评论 0原文

这个问题已经有答案了:
如何在 C# 中枚举枚举? 26 个答案

public enum Foos
{
    A,
    B,
    C
}

有没有办法循环遍历 Foos 的可能值?

基本上?

foreach(Foo in Foos)

This question already has an answer here:
How do I enumerate an enum in C#? 26 answers

public enum Foos
{
    A,
    B,
    C
}

Is there a way to loop through the possible values of Foos?

Basically?

foreach(Foo in Foos)

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

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

发布评论

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

评论(8

我不咬妳我踢妳 2024-07-30 01:23:46

是的,您可以使用 ‍GetValue‍‍‍s< /a> 方法:

var values = Enum.GetValues(typeof(Foos));

或者键入的版本:

var values = Enum.GetValues(typeof(Foos)).Cast<Foos>();

我很久以前就在我的私人库中添加了一个辅助函数,用于这种场合:

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

用法:

var values = EnumUtil.GetValues<Foos>();

Yes you can use the ‍GetValue‍‍‍s method:

var values = Enum.GetValues(typeof(Foos));

Or the typed version:

var values = Enum.GetValues(typeof(Foos)).Cast<Foos>();

I long ago added a helper function to my private library for just such an occasion:

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

Usage:

var values = EnumUtil.GetValues<Foos>();
风蛊 2024-07-30 01:23:46
foreach(Foos foo in Enum.GetValues(typeof(Foos)))
foreach(Foos foo in Enum.GetValues(typeof(Foos)))
蓝颜夕 2024-07-30 01:23:46
foreach (EMyEnum val in Enum.GetValues(typeof(EMyEnum)))
{
   Console.WriteLine(val);
}

感谢 Jon Skeet:http://bytes.com /groups/net-c/266447-how-loop-each-items-enum

foreach (EMyEnum val in Enum.GetValues(typeof(EMyEnum)))
{
   Console.WriteLine(val);
}

Credit to Jon Skeet here: http://bytes.com/groups/net-c/266447-how-loop-each-items-enum

和我恋爱吧 2024-07-30 01:23:46
foreach (Foos foo in Enum.GetValues(typeof(Foos)))
{
    ...
}
foreach (Foos foo in Enum.GetValues(typeof(Foos)))
{
    ...
}
鱼窥荷 2024-07-30 01:23:46

已更新
一段时间后,我看到一条评论让我回到了以前的答案,我想我现在会采取不同的做法。 这些天我会写:

private static IEnumerable<T> GetEnumValues<T>()
{
    // Can't use type constraints on value types, so have to do check like this
    if (typeof(T).BaseType != typeof(Enum))
    {
        throw new ArgumentException("T must be of type System.Enum");
    }

    return Enum.GetValues(typeof(T)).Cast<T>();
}

UPDATED
Some time on, I see a comment that brings me back to my old answer, and I think I'd do it differently now. These days I'd write:

private static IEnumerable<T> GetEnumValues<T>()
{
    // Can't use type constraints on value types, so have to do check like this
    if (typeof(T).BaseType != typeof(Enum))
    {
        throw new ArgumentException("T must be of type System.Enum");
    }

    return Enum.GetValues(typeof(T)).Cast<T>();
}
ぃ双果 2024-07-30 01:23:46
static void Main(string[] args)
{
    foreach (int value in Enum.GetValues(typeof(DaysOfWeek)))
    {
        Console.WriteLine(((DaysOfWeek)value).ToString());
    }

    foreach (string value in Enum.GetNames(typeof(DaysOfWeek)))
    {
        Console.WriteLine(value);
    }
    Console.ReadLine();
}

public enum DaysOfWeek
{
    monday,
    tuesday,
    wednesday
}
static void Main(string[] args)
{
    foreach (int value in Enum.GetValues(typeof(DaysOfWeek)))
    {
        Console.WriteLine(((DaysOfWeek)value).ToString());
    }

    foreach (string value in Enum.GetNames(typeof(DaysOfWeek)))
    {
        Console.WriteLine(value);
    }
    Console.ReadLine();
}

public enum DaysOfWeek
{
    monday,
    tuesday,
    wednesday
}
演出会有结束 2024-07-30 01:23:46

是的。 使用 GetValues() System.Enum 类中的方法。

Yes. Use GetValues() method in System.Enum class.

财迷小姐 2024-07-30 01:23:46
 Enum.GetValues(typeof(Foos))
 Enum.GetValues(typeof(Foos))
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文