Go to the pro pro definition in Visual Studio 2013

TL DR;
I would like to know if there is a way to switch to a "real" method implementation instead of a "link" to it.

Long version
Thus, for most of us, a link to the asmx / svc web service is a fairly common scenario.

When you do this, VS generates a proxy server in the consuming project / s.

We also usually develop both the client and the service, which most often put us in a script where you want to check some information about the implementation of the service method, but when you press F12 , you will be taken to a very useless generated VS code.

I would like to change this behavior, and instead of referring to the automatically generated code, I want the real implementation to be displayed.

+5
source share
1 answer

You cannot achieve this in Visual Studio. But in ReSharper there is a Go to Implementation command, or Ctrl + Shift + Alt + B.

+1
source

All Articles