Visual studio go to implementation

By right-clicking on a method call, we get a context menu with options. Go to the definition and go to the implementation options among others.

Why sometimes there is no option of transition to implementation?

Many thanks.

+3
source share
4 answers

This ReSharper context menu item "Go to implementation" appears only if there is an implementation for the base element.

It does not appear in every place because ReSharper does not find itself in the base member that was implemented.

http://www.jetbrains.com/resharper/features/navigation_search.html#Go_to_Implementation

+1

visual studio 2015 :

, , ( ). ReSharper.

enter image description here

enter image description here

+3

, Visual Studio! .

(Ex: property) " ". " " "".

. Resharper??? , , resharper, , . :

public interface IModule
{
int Count { get; set; }
}

public class Module : Imodule
{ 
  public int Count {get; set;}
}

public class Module2 : Imodule
{ 
   public int Count {get; set;}  
}

( - ) " ", , , , , .

, !

+2

, , , . V++, Visual Studio intellisense. *.ncb *.sdf 2010

0

Source: https://habr.com/ru/post/1757377/


All Articles