UnityEditor.CurveSelection.Equals C# (CSharp) Method

Equals() public method

public Equals ( object _other ) : bool
_other object
return bool
        public override bool Equals(object _other)
        {
            CurveSelection selection = (CurveSelection) _other;
            return (((selection.curveID == this.curveID) && (selection.key == this.key)) && (selection.type == this.type));
        }