Out of curiosity I wanted to see how the Object.Equals() method is implemented.
So I've browsed the source code of Object which finally led me to RuntimeHelpers.Equals(). But the Equals method of RuntimeHelpers is implemented externally without a Dllimport attribute.
Where can I find the "extern" implementation of RuntimeHelpers.Equals()?