2

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?

eglease
  • 2,445
  • 11
  • 18
  • 28
Vikash Balasubramanian
  • 2,921
  • 3
  • 33
  • 74

1 Answers1

0

I can access this in the Object Browser by right-clicking the item, and selecting "Navigate > Decompiled Sources" NB This is VS2022

Julian Martin
  • 194
  • 1
  • 4