vote up 0 vote down star

Is is possible to mix C# and VB.NET files in one project when using SharpDevelop?

flag

55% accept rate

1 Answer

vote up 3 vote down check

Probably not, at least not directly... you would have to use two compilers to produce one assembly, which is not supported AFAIK. However, if your final goal is to produce a single assembly, you could probably compile two separate assemblies and merge them using ILMerge

link|flag
It is possible to mix them, IDE does not prevent you but it cannot compile them. I don't care about one assembly, but would like to be able to work in multiple languages within one project. – epitka Sep 9 at 1:40
You can't do that, however you can have two projects in the same solution – Thomas Levesque Sep 9 at 8:00

Your Answer

Get an OpenID
or

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