我有这个字典:
private Dictionary<int, ICar> _ICarsDic;
对象 ICar 实际上包含另一个对象列表:
public interface ICar
{
int carId { get; set; }
string carName { get; set; }
List<IBrandsDetails> brandsDetails { get; set; }
}
我想编写一个函数,在一个列表中返回我所有_ICarsDic
值中的所有brandsDetails。
我确信 LINQ 会做到这一点(不想写一个丑陋的循环),但我是新手,所以非常感谢你的帮助。谢谢!