What I want to do is something like this: I have enums with combined flagged values.
public static class EnumExtension { public static bool IsSet
This doesn't answer the original question, but there is now a method in .NET 4 called Enum.HasFlag which does what you are trying to do in your example