您好我有一个对象列表,我需要找出我的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";
}
}
如果有人知道为什么这不起作用或更好的方式,它会挽救我的背影谢谢。
答案 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))