it is OBVIOUS that Foo<int> is a subtype of Foo<T>
To you maybe, but not to me.
To me, the huge hole this rips into the type system is simply not acceptable. If you want to throw type-safety out the window like that, I'd much rather use a dynamically typed language that was actually designed for this stuff.
The fact that arrays are covariant, even though this is known to break type-safety, is bad enough, now you want to break it for everything?
This goes to the very heart of what a type system is about. All a type system does is reject programs. And because of Rice's Theorem, those rejected program include perfectly well-typed, type-safe programs.
That is a huge cost. Taking away expressivity, preventing me from writing useful programs. In order to justify that cost, the type system better pay be back big time. It has basically two ways of doing that: giving back expressivity at the type-level it took away at the program-level and type-safety.
The former is out, simply because C#'s type system isn't powerful enough to let me express anything even remotely interesting. This leaves only the latter, and it is already on pretty shaky ground because of null, covariant arrays, unrestricted side-effects, unsafe and so on. By making generic types automatically covariant, you more or less completely take away the last shred of type-safety that is left.
There are only very few cases where S <: T ⇒ G<S> <: G<T> is actually type-safe. (IEnumerable is one such example.) And there are probably equally many cases where only S <: T ⇒ G<T> <: G<S> is type-safe. (IObservable, IComparer, IComparable, IEqualityComparer.) Generally, neither G<S> <: G<T> nor G<T> <: G<S> are type-safe.
public T Bar(T value){/*...*/}. ForFoo<object> foo = new Foo<object>();, this would be legal:object result = foo.Bar(0);. So would this:object result = foo.Bar("XYZ");However, forFoo<object> foo = new Foo<int>();only the first would be legal. – phoog Dec 22 '10 at 0:13