facebook twitter hatena line email

Unity/Csharp/enum

提供: 初心者エンジニアの簡易メモ
2021年12月3日 (金) 14:11時点におけるAdmin (トーク | 投稿記録)による版 (enumのforeachサンプル)

移動: 案内検索

宣言

public enum HogeType
{
    PIYO,
    FUGA
}

enumのforeachサンプル

foreach (HogeType hogeType in Enum.GetValues(typeof(HogeType)))
{
    string name = Enum.GetName(typeof(HogeType), hogeType);
}