Is there a way to navigate to real implementation of method behind an interface?

后端 未结 15 1483
攒了一身酷
攒了一身酷 2020-12-07 08:58

In Visual Studio, when you right-click a method call, you go to the implementation of that method inside a class except if you access this method through an interface: in th

15条回答
  •  醉酒成梦
    2020-12-07 09:44

    Visual Studio can only tell you where it is referenced, but this may be too coarse.

    There are other tools that can tell you more about the structure of your application, including which class implements which interface, which method overrules which other method, and so on. I personally prefer using Understand For C/C++.

提交回复
热议问题