mirror of
https://github.com/wabbajack-tools/wabbajack.git
synced 2024-08-30 18:42:17 +00:00
29 lines
849 B
C#
29 lines
849 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel;
|
|
using System.Linq;
|
|
|
|
namespace Wabbajack.Common
|
|
{
|
|
public static class EnumExt
|
|
{
|
|
public static IEnumerable<T> GetValues<T>()
|
|
where T : struct, Enum
|
|
{
|
|
return Enum.GetValues(typeof(T)).Cast<T>();
|
|
}
|
|
|
|
public static string ToDescriptionString<TEnum>(this TEnum val)
|
|
where TEnum : struct, IConvertible
|
|
{
|
|
if (!typeof(TEnum).IsEnum)
|
|
{
|
|
throw new ArgumentException("T must be an Enum");
|
|
}
|
|
|
|
var attributes = (DescriptionAttribute[])val.GetType().GetField(val.ToString()).GetCustomAttributes(typeof(DescriptionAttribute), false);
|
|
return attributes.Length > 0 ? attributes[0].Description : val.ToString();
|
|
}
|
|
}
|
|
}
|