using System; using System.Collections.Generic; using System.Linq; namespace IOL.Helpers { public static class EnumHelpers { public static IEnumerable GetValues() { return Enum.GetValues(typeof(T)).Cast(); } } }