Example #1
0
        public override int GetHashCode()
        {
            // Get the hash code for the Name field if it is not null.
            int hashProductName = CUName == null ? 0 : CUName.GetHashCode();

            // Get the hash code for the Code field.
            int hashProductCode = CUCode.GetHashCode();

            // Calculate the hash code for the product.
            return(hashProductName ^ hashProductCode);
        }
Example #2
0
        public bool Equals(CU p)
        {
            // Check whether the compared object is null.
            if (Object.ReferenceEquals(p, null))
            {
                return(false);
            }

            // Check whether the compared object references the same data.
            if (Object.ReferenceEquals(this, p))
            {
                return(true);
            }

            // Check whether the products' properties are equal.
            return(CUCode.Equals(p.CUCode) && CUName.Equals(p.CUName));
        }