I often see in source codes the usage of if (object.ReferenceEquals(myObject, null)) for checking if myObject is null instead of if (myObject == null) which I am familiar with.
Is there any particular reason (like speed, readability, etc) for using the first way instead of the second one? Which one do you use?
Thank you in advance.