如何删除 IList使用字典键的值

发布于 2024-09-27 08:44:15 字数 971 浏览 4 评论 0原文

例如,我有一个名为 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

裸钻 2024-10-04 08:44:15

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)

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文