Just for the record, in case someone finds this question from Google like I just did, I think it could lead to ambiguousity to have a switch on types, because of inheritance, which makes possible for a variable to be of two different types. For example:
{
string s = "a";
if (s is string) Print("Foo");
else if (s is object) Print("Bar");
}
does not do the same than
{
string s = "a";
if (s is object) Print("Foo");
else if (s is string) Print("Bar");
}
Because s is a string and an object.
I think when you write a switch(foo) you expect foo to match one and only one of the case statements. With a switch on types, the order in which you write your case statements could possibly change the result of the whole switch statement. I think that would be wrong.
You could think of a compiler-check on the types of a "typeswitch" statement, checking that the enumerated types do not inherit from each other. That doesn't exist though.
foo is T is not the same as foo.GetType() == typeof(T)!!