Warum unterstützen 'ref' und 'out' den Polymorphismus nicht?
Nehmen Sie Folgendes: class A {} class B : A {} class C { C() { var b = new B(); Foo(b); Foo2(ref b); // <= compile-time error: // "The 'ref' argument doesn't match the parameter type" } void Foo(A a) {} void Foo2(ref A a) {} } Warum tritt der oben genannte Fehler bei der Kompilierung auf? Dies...