ILookup<string, string> someList;
Cricket Sachin
Dravid
Dhoni
Football Beckham
Ronaldo
Maradona
bool status = someList.Where(x => x.Key == "Football").Where( y => y.Value == "Ronaldo")
应该返回真
bool status = someList.Where(x => x.Key == "Football").Where( y => y.Value == "Venus williams")
应该返回假
ILookup 没有 value 属性,而不是循环,有没有更聪明的方法可以在几行中获得结果。上面的代码是不正确的,如果可能的话,希望有类似的东西。我是 Linq 的新手,所以学习更好的方法