gpt4 book ai didi

c# - 你能在 C# 中循环枚举吗?

转载 作者:IT王子 更新时间:2023-10-29 04:08:54 24 4
gpt4 key购买 nike

for (int i = (int)MY_ENUM.First; i <= (int)MY_ENUM.Last; i++)
{
//do work
}

有没有更优雅的方法来做到这一点?

最佳答案

您应该能够利用以下内容:

foreach (MY_ENUM enumValue in Enum.GetValues(typeof(MY_ENUM)))
{
// Do work.
}

关于c# - 你能在 C# 中循环枚举吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7612507/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com