Go to implemented method rather than interface

后端 未结 5 1148
礼貌的吻别
礼貌的吻别 2021-02-14 13:24

Oftentimes when browsing code, I\'ll come across something like this:

public class Fruity
{
    private IOrange _Orange;

    public Fruity()
    {
        _Oran         


        
5条回答
  •  醉梦人生
    2021-02-14 13:43

    Visual Studio 2015 can do this with the "Go To Implementation" extension - https://visualstudiogallery.msdn.microsoft.com/0ed93222-83cd-4db3-92bc-a78909047156

    If there are multiple implementations, it will show you a list so you can pick which to jump to.

提交回复
热议问题