facebook twitter hatena line email

Unity/Csharp/enum

提供: 初心者エンジニアの簡易メモ
2021年12月3日 (金) 10:43時点におけるAdmin (トーク | 投稿記録)による版 (ページの作成:「==enumのforeach== <pre> public enum HogeType { PIYO, FUGA } foreach (HogeType hogeType in Enum.GetValues(typeof(HogeType))) { string name = Enum.GetName(type...」)

(差分) ←前の版 | 最新版 (差分) | 次の版→ (差分)
移動: 案内検索

enumのforeach

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