In Visual Studio 2019, there is a new feature powered by ILSpy to view decompiled source definitions(C#). It's documented here.
This is a great feature and when I have a snippet of code like,
SomeExternalClass.MemberFunction()
I can click right click and goto definition and it will take me to the decompiled source definition.
My question is how do I get that to work from the object browser. While browsing objects if I right click and Browse Definition it doesn't take me to the decompiled source definition.
Currently I have to manually call that class/function somewhere in my code just to use the goto definition feature.
Is there a way to do this, that I am missing?