Ive seen Jon Skeet Lecture ( along with Eric Lippert ) at the NDc 2010
he mentioned something very very strange
public Class Base
{
public void Foo(IEnumerable<string> strings){}
}
public Class Child:Base
{
publc void Foo(IEnumerable<object> objects) {}
}
main :
List<string> lst = new List<string>();
lst.Add("aaa");
Child c = new Child();
c.Foo(lst);
in c# 3 it will call : Base.Foo
in c# 4 it will call : Child.Foo
I know its because covariance
question :
isnt it a bit code breaking change ? Is ther any workaround so this code will continue work as it was on ver 3? if you come with a new framework , Dont break the flow of the Current one...?