Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have a large-ish solution, with C# and VB.NET projects mixed. Whenever I try to “Go to definition” on a class, property or method that’s defined in the other language, Visual Studio just takes me to the Object Browser, which is pretty annoying. Same for debugging: I can’t step into a project that's written in the other language.

Is there a way to fix this?

share|improve this question
1  
Do you have project refs or Assembly refs? – Mrchief Aug 11 '11 at 20:12
Project references. – Jakob Gade Aug 11 '11 at 20:13
Are all projects targeting same Framework version? – Haris Hasan Aug 11 '11 at 20:13
Yes, everything is .NET 4. – Jakob Gade Aug 11 '11 at 20:15
Release or debug build? (just tested -- shouldn't matter) – David Hoerster Aug 11 '11 at 20:17
show 3 more comments

2 Answers

up vote 9 down vote accepted

See this seems like a reported bug

Find all references / go to definition do not work across VB/C# in same solution.

Quote:

The project-to-project reference between a C# and VB project is treated like a file assembly reference where all symbols are treated as if coming from metadata.

share|improve this answer
1  
Thanks, that's pretty much what I feared. Fingers crossed they'll fix it at some point. :) – Jakob Gade Aug 11 '11 at 20:28

I have this problem too. As workaround I use Navigate to (CTRL + comma) instead of Goto Definition.

share|improve this answer
That's pretty neat. I've gotten so used to just slapping F12 that I forgot about the Navigate To feature in VS2010. Thanks! :) – Jakob Gade Aug 19 '11 at 4:10
3  
nice work, I thought I was a level 70 programmer orc, but the fact that I didn't know about this feature has led me to believe otherwise. – viggity Oct 18 '11 at 19:10

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.