Combining CSharp and VB.net
I am relatively new to programming.
I am currently using two seperate projects, one being vb.net and the other csharp, and would like to combine the two to one form, or program. Is there some simple way of doing this?
Any help would greatly be appreciated,
[276 byte] By [
bheller] at [2007-11-20 11:50:37]

# 1 Re: Combining CSharp and VB.net
bheller,
You can't mix VB and C# code in the same project. But you can create a multi-project solution, with each project in a different .Net language.
Perhaps your application would lend itself to creating a class library in one language and using the resulting dll in a project written in a different language?
Kerry Moorman