Is there any difference performance wise between a class created in C# and one created in VB.Net? IF there are, besides explaining them can you provide links that supports the argument. Thanks!
Printable View
Is there any difference performance wise between a class created in C# and one created in VB.Net? IF there are, besides explaining them can you provide links that supports the argument. Thanks!
Well, first things first, both VB.Net and C# are compiled using the same compiler.. JIT.. so what will determine who is faster is your coding, and weight of objects you toss around your class. No offense, but unless your paying me I only attach links to support my argument on a whim.
So this mean that any counterpart function of VB in C# executes just as fast. I guess so, because they are using the same resources, all in the .Net Framework. It's now just a matter of using "Imports" and "Using" (syntax) and etc.
Thanks!
ANyone else?