标签: c# linq collections
答案 0 :(得分:13)
答案 1 :(得分:11)
聚会很晚但是任何人都会遇到这个问题,这是一个更清洁的解决方案:
MyList.RemoveAll( p => p.MyProperty == MyValue );
答案 2 :(得分:4)