如何从使用元组的字典中删除元素

本文关键字:字典 删除 元素 元组 | 更新日期: 2023-09-27 18:15:46

我在winform上使用c# 4.5。我有一个名为ParamList的元组字典,它使用这个:

new Dictionary<Tuple<string, string>, string>();

我能够遍历ParamList以将元素放置在我的ComboBox中。我希望能够做的是使用按钮单击事件向上或向下移动元素,或者使用不同的按钮单击完全删除元素。我想不出该怎么做。谢谢。

如何从使用元组的字典中删除元素

使用Tuple删除

var dict = new Dictionary<Tuple<string, string>, string>();
dict.Add(new Tuple<string, string>("a", "b"), "c");
dict.Remove(new Tuple<string, string>("a", "b"));
System.Diagnostics.Debug.Assert(dict.Count == 0);