using System; using System.Collections.Generic; using System.Linq; namespace MLEM.Misc { public static class EnumHelper { public static IEnumerable GetValues() { return Enum.GetValues(typeof(T)).Cast(); } } }