UnityEditor.ChangedCurve.GetHashCode C# (CSharp) Method

GetHashCode() public method

public GetHashCode ( ) : int
return int
        public override int GetHashCode()
        {
            int hashCode = 0;
            hashCode = this.curve.GetHashCode();
            return ((0x21 * hashCode) + this.binding.GetHashCode());
        }
    }