Silverlight is missing the GetValues for enums, so i thought i would write an extension method to cover my needs in my project. Only thing is, Im not sure what the signature of the extension method should look like. Im thinking something along the lines of:
public static IEnumerable<Enum> GetValues(this Enum e)
But its not showing up in intellisense, so i know im wrong. Any pointers?