Does using Multiple .NET Languages (Delphi, VB.NET, C#) into the same application (but in differents class library of course) can down peformances compared to a full C# application for example ?
Does using Multiple .NET Languages (Delphi, VB.NET, C#) into the same application (but in
Share
I’m not an expert on the CLR, but I would guess that you will have very similar performance. All the languages compile to MSIL which runs on the CLR. There could be differences in performance depending on the MSIL generated from the compilers. i.e. It’s possible that similar code in VB.NET would compile to less (or more) optimized MSIL than the C# compiler.