What should IEquatable<T>.Equals(T obj) do when this == null and obj == null?
1) This code is generated by F# compiler when implementing IEquatable<T>. You can see that it returns true when both objects are null:
public sealed override bool Equals(T obj)
{
if (this == null)
{
return obj == null;
}
if (obj == null)
{
return false;
}
// Code when both this and obj are not null.
}
2) Similar code can be found in the question "in IEquatable implementation is reference check necessary" or in the question "Is there a complete IEquatable implementation reference?". This code returns false when both objects are null.
public sealed override bool Equals(T obj)
{
if (obj == null)
{
return false;
}
// Code when obj is not null.
}
3) The last option is to say that the behaviour of the method is not defined when this == null.
this == nullshould never (!!!) occur. Not sure about the peculiarities of F# but in C# this holds. – Konrad Rudolph Nov 11 '11 at 13:59this != nullwhen the method is invoked bycallopcode. – Radek Micek Nov 11 '11 at 15:42callvirtfor non-static static method calls. But perhaps F# only emitscall... – Thomas Levesque Nov 11 '11 at 15:47nullcheck in this situation is never needed. Even in VB, which has aMyClasskeyword which emits acallinstead ofcallvirt, this situation cannot arise. – Konrad Rudolph Nov 11 '11 at 16:08