War3FixFont icon indicating copy to clipboard operation
War3FixFont copied to clipboard

堆栈溢出,这一段代码会互相调用导致StackOverflowException

Open djnwzs opened this issue 1 year ago • 1 comments

    public static bool operator ==(HotKey key1, HotKey key2)
    {
        return key1 != null && key2 != null && key1.Equals(key2);
    }

    public static bool operator !=(HotKey key1, HotKey key2)
    {
        return !(key1 == key2);
    }

djnwzs avatar Dec 10 '23 16:12 djnwzs