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