学员(7687)
课程(179)
分享
var res =
masterList.SelectMany(m => kongfuList, (m, k) => new {master = m, kongfu = k})
.Where(x => x.master.Kongfu == x.kongfu.Name && x.kongfu.Power>90 );
要学这个得先学习 委托和事件哈