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:
parent
ebee9b9ded
commit
216796c29e
|
@ -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();
|
||||
}
|
||||
|
|
|
@ -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" />
|
||||
|
|
|
@ -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();
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue