Esempio n. 1
0
        public override int GetHashCode()
        {
            int hashCode = 0;

            unchecked {
                if (Identifier != null)
                {
                    hashCode += 1000000007 * Identifier.GetHashCode();
                }
                if (Profile != null)
                {
                    hashCode += 1000000009 * Profile.GetHashCode();
                }
                if (MinimumVersion != null)
                {
                    hashCode += 1000000021 * MinimumVersion.GetHashCode();
                }
            }
            return(hashCode);
        }