Hi Experts,
I am working on mixed language web project. In App_Code folder, Created 2 folders with names "VBCode", "CSCode".
I added one class in VBCode folder with name "Class1.vb" and implemented 2 methods. And, I added one Class in CSCode folder with the name "Class2.cs".
My Requirements is, I want to create object for class "Class1.vb" in my "Class2.cs".
Is this Possible? if so, please give me the solution.
Thanks in Advance,
Ravikrishna
Loading
Sam HobbsPosted Nov 30, 2011, 12:49 PM
Dynamic linking is newer technology. There are many benefits to it. Unmanaged Windows programs can be created using DLLs. Most of the Windows API (I think all of it) is actually a DLL. The only way I know of to use Managed code developed using different languages is to create a "library" from one or both of them. A library is essentially a DLL or similar to a DLL. There is no equivalent to static linking of multiple languages for managed code.
VulpesPosted Nov 30, 2011, 9:49 AM
ravi kumarPosted Nov 30, 2011, 7:24 AM
VulpesPosted Nov 30, 2011, 6:26 AM
http://forums.asp.net/t/1410463.aspx/1