CC#•Created by mikeitsme on 9/16/2023 in #help ❔ Where can I find the implementation of System.Object.ReferenceEquals?
Thank you!
So it shows the following implementation
public static bool ReferenceEquals(object? objA, object? objB)
{
return objA == objB;
}
Now that doesn't really explain much, where should I go next?