检查对象列表是否包含属性

时间:2012-08-07 04:51:40

标签: c# visual-studio-2010 visual-studio c#-4.0 c#-3.0

您好我有一个对象列表,我需要找出我的ID是否已经在列表中。在对象类中,我设置了id,我只想知道在Ui中输入的那个是否已经在使用中。

班级

class Product
{

    private string name = "";
    private int id = 0;
    private decimal Pvalue = 0.00m;
    private static int lastId = 1;

    public Product(string namep, decimal valuep)
    {
        this.name = namep;
        this.id = lastId++;
        this.Pvalue = valuep;
    }



    public override string ToString()
    {
        return name + "     " + id + "    "+ Pvalue;
    }


    public bool Equals(Product p)
    {

        return (p.id == this.id);
    }
}

我试图解决这个问题:

 int id;

        bool test = int.TryParse(textBoxId.Text, out id);


            if(test)
            {


                if(Inv.Contains(id))
                {

                label2.Text = "you already have this id";

                }else
                {
                    label2.Text = "you can use this id";            
                }

            }

如果有人知道为什么这不起作用或更好的方式,它会挽救我的背影谢谢。

1 个答案:

答案 0 :(得分:5)

private int id = 0;更改为public int Id { get; set; }。另外,将所有引用从id更改为Id

using System.Linq添加到您的业务逻辑文件中。

if (Inv.Contains(id))更改为if (Inv.Any(x => x.Id == id))