Exemplo n.º 1
0
        public override int GetHashCode()
        {
            var hash = 17;

            hash = hash * 23 + Id.GetHashCode();
            hash = hash * 23 + GroupId.GetHashCode();
            hash = hash * 23 + MassMonoisotopicMostAbundant.GetHashCode();
            hash = hash * 23 + MassMonoisotopic.GetHashCode();
            hash = hash * 23 + Net.GetHashCode();

            return(hash);
        }
Exemplo n.º 2
0
        /// <summary>
        /// Compares two objects' values.
        /// </summary>
        /// <param name="obj">Other to compare with.</param>
        /// <returns>True if values are the same, false if not.</returns>
        public override bool Equals(object obj)
        {
            if (obj == null)
            {
                return(false);
            }

            var other = obj as FeatureLight;

            if (other == null)
            {
                return(false);
            }

            if (!Id.Equals(other.Id))
            {
                return(false);
            }
            if (!Abundance.Equals(other.Abundance))
            {
                return(false);
            }
            if (!ChargeState.Equals(other.ChargeState))
            {
                return(false);
            }
            if (!DriftTime.Equals(other.DriftTime))
            {
                return(false);
            }
            if (!MassMonoisotopic.Equals(other.MassMonoisotopic))
            {
                return(false);
            }
            if (!Net.Equals(other.Net))
            {
                return(false);
            }
            return(true);
        }