Hello Friends
while diassembling the .Net Source Code using Reflector, I came upon the Equals implementation in the Object Class and it refers to
bool InternalEquals(object objA, object objB);
Which again refers to
internal static extern bool InternalEquals(object objA, object objB);
I am now confused regarding where to find the implementation of this InternalEquals(object objA, object objB)
function and how is it using this function and in which .Net assembly is this function defined and also if each and everything is written from scratch for the .Net Source Code, then why I am unable to find this function's implementation.
Kindly please help me in this.. Thanking You