我有一个 KeyValurPair myList。如何根据密钥删除条目?我应该如何使用 myList.Remove 方法?我没有使用字典,因为需要 myList 作为 Bindingsource 的数据源。
List<KeyValuePair<string, string>> myList = new List<KeyValuePair<string, string>>();
string key = "@index";
.. .. ..
myList.Remove( i am lost here )
提前感谢,VRPS。