Can anyone tell me where in the source code of the .NET runtime I can find the actual implementation of the Equals method of the Object class? Everywhere I have looked shows it calling into some function that I can't actually find the code for (one version of Object.Equals I found calls bool RuntimeHelpers.Equals(object o1, object o2) but then I was unable to find the code that actually implements that function)
↧