UnityEditor.EditorCurveBinding.GetHashCode C# (CSharp) Method

GetHashCode() public method

public GetHashCode ( ) : int
return int
        public override int GetHashCode()
        {
            object[] objArray1 = new object[] { this.path, ':', this.type.Name, ':', this.propertyName };
            return string.Concat(objArray1).GetHashCode();
        }

Usage Example

        public override int GetHashCode()
        {
            int hash = 0;

            unchecked
            {
                hash = curve.GetHashCode();
                hash = 33 * hash + binding.GetHashCode();
            }
            return(hash);
        }
All Usage Examples Of UnityEditor.EditorCurveBinding::GetHashCode