gpt4 book ai didi

c# - 如何仅根据键从 List> 中删除条目?

转载 作者:太空宇宙 更新时间:2023-11-03 13:41:04 28 4
gpt4 key购买 nike

我有一个 KeyValurPair myList。如何删除基于 key 的条目?我应该如何使用 myList.Remove 方法?我没有使用字典,因为需要将 myList 作为绑定(bind)源的数据源。

List<KeyValuePair<string, string>> myList = new List<KeyValuePair<string, string>>();

string key = "@index";

......

myList.Remove( i am lost here )

提前致谢,VRPS.

最佳答案

使用List.RemoveAll .您可以传入一个检查键值的谓词。示例:

myList.RemoveAll(kvp => kvp.Key == "@index");

关于c# - 如何仅根据键从 List<KeyValuePair<string, string>> 中删除条目?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17006457/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com