We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f6b2ec6 commit 456a0c8Copy full SHA for 456a0c8
1 file changed
Il2Cppmscorlib/Type.cs
@@ -58,4 +58,7 @@ public MethodInfo GetMethod(String name)
58
59
public static Boolean operator ==(Type left, Type right) => throw null;
60
public static Boolean operator !=(Type left, Type right) => throw null;
61
+
62
+ public override bool Equals(object obj) => throw new System.NotImplementedException();
63
+ public override int GetHashCode() => throw new System.NotImplementedException();
64
}
0 commit comments