com.Mes.Dss.Entity.MesScmsBom.GetHashCode C# (CSharp) Method

GetHashCode() public method

public GetHashCode ( ) : int
return int
        public override int GetHashCode()
        {
            if (Bom != null && ItemCode != null && ProductLine != null && TagNo != null)
            {
                return this.Bom.GetHashCode() ^ this.ItemCode.GetHashCode() ^ this.ProductLine.GetHashCode() ^ this.TagNo.GetHashCode();
            }
            else
            {
                return base.GetHashCode();
            }
        }