I would like to determine the effect of code changes on overriding Equals () in my class on code.
public override bool Equals(object obj)
{
return true;
}
When I do Shift-F12 to find all the links, Visual Studio returns 126,703 places where I call object.Equals ().
Is there a way to skip overrides of the Equals () method when looking for links?
Gregc source
share