what do I have to do to jump to the right class not the metadata?
in visual studio 2010 while working on c# code I right click on some code to jump to “Go To Definition”
sometimes shows the right class where my object is define and sometimes show me the Metadata not the right class…
why is this ?
thanks for your help
It only shows you the source code of a class if that class is available in your solution. If you’re referencing a project whose source you have, you can add it to the solution as a project reference, and “Go To Definition” should behave as you’d expect. If you’re referencing a compiled DLL, “Go To Definition” will only display metadata.