Visual Studios pages  
Author Message
Kiranvukkadala





PostPosted: .NET Framework Setup, Visual Studios pages Top

I was doing a project and have some pages using VB as the script code and some using C # as script code.

Would I be facing any issues in doing so or VS supports this.

Any inputs would be appreciated.

Thanks



.NET Development18  
 
 
johnedw





PostPosted: .NET Framework Setup, Visual Studios pages Top

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