ARCed.Scintilla.KeyBinding.Equals C# (CSharp) Method

Equals() public method

Overridden.
public Equals ( object obj ) : bool
obj object Another KeyBinding struct
return bool
        public override bool Equals(object obj)
        {
            if (!(obj is KeyBinding))
                return false;

            var kb = (KeyBinding)obj;

            return this._keycode == kb._keycode && this._modifiers == kb._modifiers;
        }