vote up 5 vote down star

Can you mix vb and c# files in the same project for a class library? Is there some setting that makes it possible? I tried and none of the intellisense works quite right, although the background compiler seems to handle it well enough (aside from the fact that I, then, had 2 classes in the same namespace with the same name and it didn't complain). We're trying to convert from VB to C# but haven't finished converting all the code. I have some new code I need to write, but didn't really want to make a new project just for it.

Edit: added "haven't"

flag

65% accept rate
4  
Why are you writing new code in VB if you just finished converting to C#? – Adam Robinson Aug 14 at 14:10
Fixed my post. We haven't finished. – Wes P Aug 14 at 15:00
one of the reasons to have VB code mixed in is to use its unique features, notably its XML capabilities if you're using LINQ to XML for example. That way instead of writing 'from element in root.Elements("Data")' you could use VB's dynamic XML syntax: 'From element In root.<Data>'. When working a lot with XML files this syntax can be much easier to work with than C#'s – Marchy Dec 12 at 18:52

9 Answers

vote up 5 vote down check

No, you can't. An assembly/project (each project compiles to 1 assembly usually) has to be one language. However, you can use multiple assemblies, and each can be coded in a different language because they are all compiled to MSIL.

It compiled fine and didn't complain because a VB.NET project will only actually compile the .vb files and a C# project will only actually compile the .cs files. It was ignoring the other ones, therefore you did not receive errors.

Edit: If you add a .vb file to a C# project, select the file in the Solution Explorer panel and then look at the Properties panel, you'll notice that the Build Action is 'Content', not 'Compile'. It is treated as a simple text file and doesn't even get embedded in the compiled assembly as a binary resource.

link|flag
1  
There are ways to combine two assemblies after the fact, but that wouldn't solve this user's problem. – Steven Sudit Aug 14 at 14:08
True, but I wouldn't condone it for the sole purpose of mixing languages. – Joel B Fant Aug 14 at 14:15
I believe you can mix managed and unmanaged c++ in the same project. – Callum Rogers Aug 14 at 15:43
@C Rogers: That situation is a different critter entirely. You can mix managed and unmanaged C++ in the same source file if you want. But it's still not the same as mixing VB.NET and C#. – Joel B Fant Aug 14 at 16:45
this isn't strictly the case, but it's how Visual Studio and MSBuild are configured. – Scott Weinstein Aug 14 at 18:19
vote up 7 vote down

You can not mix vb and c# within the same project - if you notice in visual studio the project files are either .vbproj or .csproj. You can within a solution - have 1 proj in vb and 1 in c#.

Looks like according to this you can potentially use them both in a web project in the App_Code directory:

http://pietschsoft.com/post/2006/03/30/ASPNET-20-Use-VBNET-and-C-within-the-App%5FCode-folder.aspx

link|flag
vote up 1 vote down

I don't see how you can compile a project with the C# compiler (or the VB compiler) and not have it balk at the wrong language for the compiler.

Keep your C# code in a separate project from your VB project. You can include these projects into the same solution.

link|flag
vote up 1 vote down

Although Visual Studio does not support this (you can do some tricks and get MSBuild to compile both, but not from within Visual Studio), SharpDevelop does. You can have both in the same solution (as long as you are running Visual Studio Professional and above), so the easiest solution if you want to keep using Visual Studio is to seperate your VB code into a different project and access it that way.

link|flag
1  
How does ShartDevelop support this? I just tried it and it does not compile. Is there anything special that needs to be done? – epitka Sep 8 at 20:53
vote up 1 vote down

Incidentally, I thought it might be possible to pull off a hybrid approach using partial classes in two different projects, but partials can't span assemblies, so this won't work, either.

link|flag
Dang, that was gonna be my next attempt. – Wes P Aug 14 at 14:54
vote up 0 vote down

You need one project per language. I'm quite confident I saw a tool that merged assemblies, if you find that tool you should be good to go. If you need to use both languages in the same class, you should be able to write half of it in say VB.net and then write the rest in C# by inheriting the VB.net class.

link|flag
vote up 0 vote down

As others have said, you can't put both in one project. However, if you just have a small piece of C# or VB code that you want to include in a project in the other language, there are automatic conversion tools. They're not perfect, but they do most things pretty well. Also, SharpDevelop has a conversion utility built in.

link|flag
There is that. I could just suck it up and code what I need to in VB and convert it later with the rest of the stuff. – Wes P Aug 14 at 14:57
vote up 0 vote down

At the risk of echoing every other answer, no, you cannot mix them in the same project.

That aside, if you just finished converting VB to C#, why would you write new code in VB?

link|flag
Because you found an error in my post :) We haven't finished converting yet. – Wes P Aug 14 at 14:56
vote up 0 vote down

It might be possible with some custom MSBuild development. The supplied .targets force the projects to be single language - but there's no runtime or tooling restriction preventing this.

Both the VB and CS compilers can output to modules - the CLR's version of .obj files. Using the assembly linker, you could take the modules from the VB and CS code and produce a single assembly.

Not that this would be a trival effort, but it probably would work.

link|flag

Your Answer

Get an OpenID
or

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