You can use enum values, as long as you use Switch<MyEnum> and not Switch<int>. (If you don't have a custom enum handy, you can try it out with something like HttpStatusCode.)In the Switch<T> designer, how do I specify the case value as enum type like above example?
Tim