Go to implemented method rather than interface

后端 未结 5 1160
礼貌的吻别
礼貌的吻别 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:56

    If you go to the Visual Studio menu "View" and select "Code Definition Window", when you click on .Peel() you might be shown the implementation of .Peel() (this doesn't always work, but try it and see).

提交回复
热议问题