Hi there, one way you can achieve this is by creating the VB code inside its own workspace, and compile it into a Class Library DLL. You can then import this into your C# Application and invoke th ecode.
That is one of the nice things about the .NET Environment. You are able to do quite a few things that you wouldn't have been able to do easily before.
All of the code is converted to MSIL, which is then compiled to machine code by the .NET JIT
Thanks,
John
|