Files
GoldenCrystal 751e84fc6d Add DebuggerDisplay attributes.
Format some code to C# 7.0.
Remove useless using directives.
2017-09-07 23:10:17 +02:00

34 lines
949 B
C#

using System.Collections.Generic;
using System.Linq;
using System.Reflection;
namespace System.Unicode.Builder
{
internal static class EnumHelper<T>
where T : struct
{
private static readonly Dictionary<string, T> namedValueDictionary = CreateNamedValueDictionary();
private static Dictionary<string, T> CreateNamedValueDictionary()
{
var type = typeof(T).GetTypeInfo();
if (!type.IsEnum) throw new InvalidOperationException();
return
(
from field in type.DeclaredFields
where field.IsPublic && field.IsLiteral
from attr in field.GetCustomAttributes<ValueNameAttribute>()
where attr.Name != null
select new KeyValuePair<string, T>(attr.Name, (T)field.GetValue(null))
).ToDictionary(kvp => kvp.Key, kvp => kvp.Value, StringComparer.OrdinalIgnoreCase);
}
public static bool TryGetNamedValue(string name, out T value)
{
return namedValueDictionary.TryGetValue(name, out value);
}
}
}