0

Possible Duplicate:
Mixing C# & VB In The Same Project

Is it possible to write two applications using different .Net languages (For example C# and Visual Basic) and combine the two into a single program in Visual Studio?

I want to write two parts of one program in two different languages and merge them.

Thanks.

Community
  • 1
  • 1
Aligoglos
  • 93
  • 3
  • 10

2 Answers2

0

You would need to clarify what exactly you are after, but the .Net languages are more or less interchangeable. You could write one DLL or component in C#, and another in Vb.Net, and then use both in a parent application which could be in either language (or something different entirely).

Miika L.
  • 3,333
  • 1
  • 24
  • 35
0

Yes, You can add two project in a solution, A project C# library and another project with VB, Then reference a project to another, Test it and enjoy on .Net Technology!

Reza ArabQaeni
  • 4,848
  • 27
  • 46