ฉันกำลังพยายามใช้.Contains()
ฟังก์ชันนี้กับรายการวัตถุที่กำหนดเอง
นี่คือรายการ:
List<CartProduct> CartProducts = new List<CartProduct>();
และCartProduct
:
public class CartProduct
{
public Int32 ID;
public String Name;
public Int32 Number;
public Decimal CurrentPrice;
/// <summary>
///
/// </summary>
/// <param name="ID">The ID of the product</param>
/// <param name="Name">The name of the product</param>
/// <param name="Number">The total number of that product</param>
/// <param name="CurrentPrice">The currentprice for the product (1 piece)</param>
public CartProduct(Int32 ID, String Name, Int32 Number, Decimal CurrentPrice)
{
this.ID = ID;
this.Name = Name;
this.Number = Number;
this.CurrentPrice = CurrentPrice;
}
public String ToString()
{
return Name;
}
}
ดังนั้นฉันจึงพยายามค้นหาผลิตภัณฑ์ที่คล้ายกันในรายการ:
if (CartProducts.Contains(p))
แต่มันไม่สนใจผลิตภัณฑ์ในรถเข็นที่คล้ายกันและฉันไม่รู้ว่ามันตรวจสอบอะไร - ID? หรือทั้งหมด?
ขอบคุณล่วงหน้า! :)
GetHashCode()
?