Oddr.Models.ODDRPropertyRef.GetHashCode C# (CSharp) Method

GetHashCode() public method

public GetHashCode ( ) : int
return int
        public override int GetHashCode()
        {
            int hash = 3;
            hash = 73 * hash + (this.propertyName != null ? this.propertyName.GetHashCode() : 0);
            hash = 73 * hash + (this.aspectName != null ? this.aspectName.GetHashCode() : 0);
            return hash;
        }