Two implementations of the method? (VS2012 + ReSharper 7.1)

When I right-click a method and select "Go to implementation", I often present two implementations; one in my source code and one as a link ...

enter image description here

In this example, the EmailService is in another project, which is loaded into the current Visual Studio solution and referred to as a project link.

Selecting the reference unit does not seem to do anything, while choosing the source code leads me to implement the method (as expected).

This happened on several different development machines in different projects.

What causes this, and is it possible to fix the problem in order to proceed with the implementation directly to the implementation of the source code?

This happens in Visual Studio 2012 with ReSharper 7.1 installed.

+6
source share
1 answer

With Alt-Shift-T or what you have to search for a character, is the checkbox selected for the selected library types?

If not, it could be a Resharper error . You can help fix this if you create a small reproducible example and attach it there;)

+2
source

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


All Articles