我需要拆分List< IInterface>获取IInterface的具体实现列表.
我怎样才能以最佳方式做到这一点?
我怎样才能以最佳方式做到这一点?
public interface IPet { } public class Dog :IPet { } public class Cat : IPet { } public class Parrot : IPet { } public void Act() { var lst = new List<IPet>() {new Dog(),new Cat(),new Parrot()}; // I need to get three lists that hold each implementation // of IPet: List<Dog>,List<Cat>,List<Parrot> }
解决方法
您可以按类型执行GroupBy:
var grouped = lst.GroupBy(i => i.GetType()).Select(g => g.ToList()).ToList()
如果你想要一个字典,你可以这样做:
var grouped = lst.GroupBy(i => i.GetType()).ToDictionary(g => g.Key,g => g.ToList()); var dogList = grouped[typeof(Dog)];
或者蒂姆在评论中提出:
var grouped = lst.ToLookup(i => i.GetType());