この質問にはすでに回答があります。
C#で列挙型を列挙するにはどうすればよいですか。26回答
public enum Foos
{
A,
B,
C
}
Foos
の可能な値をループする方法はありますか?
基本的に?
foreach(Foo in Foos)
はい、 GetValues
メソッドを使用できます。
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>();
foreach(Foos foo in Enum.GetValues(typeof(Foos)))
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 (Foos foo in Enum.GetValues(typeof(Foos)))
{
...
}
更新しました
しばらくすると、以前の回答に戻るコメントが表示されますが、今は別の方法でやりたいと思います。最近書いてみます。
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>();
}
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
}
Enum.GetValues(typeof(Foos))
はい。 System.Enum
classで GetValues()
methodを使用します。