Correct me if I'm wrong. From what I get CLR combines multiple supported language compiled sources, right? So that means I can write UI and the connection to the database in VB and the logic in C# for example? And if I'm right, how to do it in Visual Studio?
Asked
Active
Viewed 36 times
1
-
You create an empty solution in VS. Add a new C# project to it. Add new VB.NET project to it. Add reference of one project to another and there you go. That's how you do it. – Chetan Jul 03 '18 at 22:44
-
So I understood right to CLR part? – Aram Hayrapetyan Jul 03 '18 at 22:52
-
This feels like a XY Problem - https://meta.stackexchange.com/questions/66377/what-is-the-xy-problem . What is your underlying problem? – mjwills Jul 03 '18 at 23:12
-
It's not a problem asking for a solution, I'm just making sure I understood tight about CLR – Aram Hayrapetyan Jul 04 '18 at 06:35