What's the best way to "join" two project into "the bigger one" ? How can I get one class from the other language and import into the second one? Any special thing to do? Or simply dlls?
Best Regards,
Xmas79
Printable View
What's the best way to "join" two project into "the bigger one" ? How can I get one class from the other language and import into the second one? Any special thing to do? Or simply dlls?
Best Regards,
Xmas79
Just ship your class in a dll , then reference it and you can use it as regular class I believe . I'm into this , I'm writing a class that uses some API calls in VB.NET , then I would use it in my C# proj .
Also look into the Assembly Linker Utility (Al.exe) part of the .NET SDK it will create a single .NET assembly from MSIL generated from the various .NET languages.
Cheers
Thanks a lot!
Best regards...
Yes , I've done it . VB.NET class into C# . Tested many times , seems to work well . So basically , all what you need is to put your class in class proj and use the dll with all .NET Languages as MS says .