Navigating from VB.NET code to C# code problem
Posted
by user181218
on Stack Overflow
See other posts from Stack Overflow
or by user181218
Published on 2010-06-16T10:58:15Z
Indexed on
2010/06/16
11:02 UTC
Read the original article
Hit count: 260
vb.net
Hi,
There seemes to be a consistent problem with the following situation:
Say you have a VS2008 solution, consisting of a (say console) application written in vb.net, and a class library written in c#. The application references the class library project.
This, of course, complies and works well. However, when you right-click (in the vb.net application code) a function prototype/object type defined in the class library, and select "Go to definition", the object browser opens providing you with the the list of methods available for the class the class library consists of. BAD. However, if you try to do the same when both the application and cl are in c#, this works just fine and you navigate driectly to the relevant function/class.GOOD.
Known issue? Solvable?
© Stack Overflow or respective owner