I have been a VB.NET developer for a long time and recently switched to C #. I learned that some of the built-in functions VB.NET (which precede the .NET back to 6.0 and the BASIC itself), such as String.Leftand Right, or advanced features, such as saving the registry ( SaveSettingsand GetSettings) noticeably absent.
What I did was create a new project in the same solution with VB.NET as its language and recreate basically all the functions I need that are available in VB.NET. And then I just call it the C # code I'm writing.
Since compiling code in .NET pretty much boils down to the same CIL, it doesn't matter how important which language I wrote in the code, or if I mix C # with VB.
Am I wrong or right?
thank
source
share