如何删除 IList使用字典键的值
例如,我有一个名为 Temp 的类,然后我使用 IList
为其分配值。 填充 IList
后,我创建了一个字典并为每个对象分配了一个 int 键。 我的问题是,如何从 IList 和字典中删除名称为 b 的 temp_value 和键值为“2”的 a ?
class Temp
{
public string name { get; set; }
public Temp(string n)
{
this.name = n;
}
}
主要
class Program
{
static void Main(string[] args)
{
IList<Temp> temp_value = new List<Temp>();
temp_value.Add(new Temp("a")
{
name = "a",
});
temp_value.Add(new Temp("b")
{
name = "b",
});
temp_value.Add(new Temp("b")
{
name = "b",
});
Dictionary<int, Temp> dic = new Dictionary<int, Temp>();
for (int i = 0; i < temp_value.Count; i++)
{
dic.Add(i, temp_value[i]);
}
}
}
For example I have a class named Temp then I assigned values to it using an IList<Temp>
.
After populating the IList<Temp>
I created a dictionary and assign an int key to each object.
My question is that how do I remove from IList and dictionary the temp_value with the name b and a with a key value of "2"?
class Temp
{
public string name { get; set; }
public Temp(string n)
{
this.name = n;
}
}
Main
class Program
{
static void Main(string[] args)
{
IList<Temp> temp_value = new List<Temp>();
temp_value.Add(new Temp("a")
{
name = "a",
});
temp_value.Add(new Temp("b")
{
name = "b",
});
temp_value.Add(new Temp("b")
{
name = "b",
});
Dictionary<int, Temp> dic = new Dictionary<int, Temp>();
for (int i = 0; i < temp_value.Count; i++)
{
dic.Add(i, temp_value[i]);
}
}
}
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
Dict.remove(2)
这是最简单的方法
,因为您将字典中的项目添加到与列表相同的索引处。
因此,如果您使用 dict.remove(2),则可以使用 IList.remove at(2)
Dict.remove(2)
This is the simplest way
Since you added the items in dictionary at same index as list.
So if you use dict.remove(2)than you can use IList.remove at(2)