Remove enum helper and move the remaining method to ReflectionExtensions since that is more accurate to what it is doing

This commit is contained in:
adelikat 2014-07-03 17:41:55 +00:00
parent ebee9b9ded
commit 216796c29e
3 changed files with 15 additions and 2 deletions

View File

@ -21,7 +21,7 @@ namespace BizHawk.Client.EmuHawk.ControlExtensions
box.Items.Clear();
box.Items.AddRange(
EnumHelper.GetDescriptions<T>()
typeof(T).GetEnumDescriptions()
.ToArray());
box.SelectedItem = enumVal.GetDescription();
}

View File

@ -52,7 +52,6 @@
<Compile Include="Buffer.cs" />
<Compile Include="Colors.cs" />
<Compile Include="CustomCollections.cs" />
<Compile Include="EnumHelper.cs" />
<Compile Include="Extensions\Extensions.cs" />
<Compile Include="Extensions\IOExtensions.cs" />
<Compile Include="Extensions\NumberExtensions.cs" />

View File

@ -138,5 +138,19 @@ namespace BizHawk.Common.ReflectionExtensions
return null;
}
/// <summary>
/// Takes an enum Type and generates a list of strings from the description attributes
/// </summary>
/// <returns></returns>
public static IEnumerable<string> GetEnumDescriptions(this Type type)
{
var vals = Enum.GetValues(type);
foreach (var v in vals)
{
yield return v.GetDescription();
}
}
}
}