我有一堂课:
class Stock : Product
{
}
在那个课程中,我做了一个Equals
方法:
public bool Equals(Product p)
{
return (p.Id == this.Id);
}
但它不起作用。它告诉我Equals
:
警告 1 “WindowsFormsApplication1.Stock.Equals(WindowsFormsApplication1.Product)”隐藏了继承的成员“WindowsFormsApplication1.Product.Equals(WindowsFormsApplication1.Product)”。如果打算隐藏,请使用 new 关键字。
C:\Users\tom\Desktop\uni\WindowsFormsApplication1\WindowsFormsApplication1\WindowsFormsApplication1\Stock.cs 36 21 WindowsFormsApplication1
有谁知道这是为什么?