Hi TJ,
I think even in .NET world you can have Constants expression in "Case value"
int caseSwitch = 1; switch (caseSwitch) { case 1: Console.WriteLine("Case 1"); break; case 2: Console.WriteLine("Case 2"); break; default: Console.WriteLine("Default case"); break; }
.
See this link here.
http://msdn.microsoft.com/en-us/library/06tc147t(v=vs.80).aspx
and same hold true for Switch Activity in workflow ... you may find This link useful.
Thanks,
Madhur
MB