Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个集合 List1,其中有 5 个项目。基于某些条件,我想从 List1 中删除一些项目,但不希望另一个集合用于更新项目。我希望更新的集合在 List1 中。
你可以做这样的事情
nameList.RemoveAll(x => x.FirstName == "Bob");
如果是,List您可以使用RemoveAll方法:
List
List1.RemoveAll(_condition_);