Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Visual Studio 2010 Express multi-language solutions

I am working on a C# project, which needs a VB.NET Class library. I have added the DLL reference of VB.NET Project into C# project. This works fine, but sometimes I need to debug the VB.NET project or pause the project and check the variable values of my VB.NET Project.

Is it possible in Visual Studio 2010 Express Edition?

like image 702
Mahdi Ghiasi Avatar asked Dec 01 '11 16:12

Mahdi Ghiasi


People also ask

How can I download Visual Basic 2010 for free?

To download Visual Basic 2010 Express, launch your web browser (e.g. Internet Explorer) and go to this address: https://s3.amazonaws.com/cspublic/setup/VBExpress.exe.

Is ms Visual Studio 2010 Free?

Try Visual Studio 2010 Free for 90 Days . NET Framework developers can use this powerful development tool and check the VS2010 features for a limited period by downloading the full Microsoft Visual Studio 2010 trial versions.

What is the description of Visual Studio 2010 vs?

Visual Studio 2010 SP1 enables you to manage Microsoft SQL Server Compact 4.0 SDF files in Solution Explorer and in Server Explorer in the context of web projects. Additionally, Visual Studio 2010 SP1 enables you to use SQL Server Compact 4.0 together with the Microsoft ASP.NET Web Forms in a SQL data source control.


1 Answers

What you can do is to keep two VisualStudio express open at the same time. One with the C# solution and the other one with the VB solution.

Also you make sure the VB project compiles where the c# finds its references (or reference the library from the Debug/Release folder)

At this point you can edit both the projects at the same time (it's tricky but it should work).

Problem is you do not have the "Attach to Process" feature of Visual Studio which would allow you to simply debug in one or another depending on the circumstances.

Maybe, you can follow these links to obtain what you want: http://stewartr.blogspot.com/2006/09/debugging-nunit-in-visual-studio.html

http://www2.wealth-lab.com/Wiki/kbDebugExpress.ashx

In the link, it shows how Nunit is attached to the debugger.

Hope it helps

like image 72
mhttk Avatar answered Sep 20 '22 11:09

mhttk