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); }