摘要: 原文链接:http://ayende.com/blog/1558/polymorphic-databinding-solutionsLet us assume that you have the following class hierarchy:Now, what do you think the result of this code will be?BindingList<Animal> animals = new BindingList<Animal>();animals.Add(new Dog());animals.Add(new Cat());GridVie 阅读全文