In Visual Studio when I have a base class with method
public virtual void A()
and a derived class with method
public override void A()
how can I navigate from the latter to the definition in the base class?
When I view the Call Hierarchy I see:
A
- Calls To 'A
'
- Calls To Base Member 'A
'
Not the definition Base A
.