Multiple languages in one project

  • Thread starter Thread starter Elmo Watson
  • Start date Start date
E

Elmo Watson

From what I understand, in AsP.Net apps, you can use/mix multiple language
files.

Is this also possible in Winforms?

for example, if I have a VB.Net project, and find some online C# code that I
want to use, is it possible to add the C# code into the VB.Net project?
 
No.
You have a couple of options:
1. Compile the C# into a dll and reference that dll from your VB project.
2. Convert the C# code to VB (the current level of conversion quality of
many C# to VB converters is quite high).
--
David Anton
http://www.tangiblesoftwaresolutions.com
Convert between VB, C#, C++, and Java
Instant C#
Instant VB
Instant C++
C++ to C# Converter
C++ to VB Converter
C++ to Java Converter
 
Back
Top