We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Currently the generator implements the generic IComparable<T> but not the untyped IComparable interface.
IComparable<T>
IComparable
This is asymmetric to equality, where both regular Equals(object) and the typed Equals(T) are both overridden.
Equals(object)
Equals(T)
It would be good to implement the untyped IComparable as well.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Currently the generator implements the generic
IComparable<T>
but not the untypedIComparable
interface.This is asymmetric to equality, where both regular
Equals(object)
and the typedEquals(T)
are both overridden.It would be good to implement the untyped
IComparable
as well.The text was updated successfully, but these errors were encountered: