I wanted to look at the implementation of System.Type.Equals
, and while I was browsing the file in VS I found that it also contains a ==
overload. Of course I want to make sure it does what I think it does, so I head over to the C# official documentation. They don't have it there, so then my next instinct is to look at the C# source, I find the specific line, but then it says that the ==
operator is external, which makes me think that there's a DLL or some C++ file I could look at, but even after I did a file search I could not find any C++ or DLL file.
I want to make sure that System.Type.Equals
and System.Type.==
are equivalent.
Where should I go to view a more specific implementation of this function? And how should I search for things like these moving forward?