Hi!
Are there some difference thread performace in c# and vb.net
I have an app in vb.net with use some threads for imaging processing. So, it's some hard. I wanna know if a c# implementation would be better.
Thanks a lot.
Hi!
Are there some difference thread performace in c# and vb.net
I have an app in vb.net with use some threads for imaging processing. So, it's some hard. I wanna know if a c# implementation would be better.
Thanks a lot.
Compa Thread performance in C# and vb.net
QWERTYtech
I don't' know specific situations,
but generally, if you write a code in VB and translate it to C#, then compare MSIL from both programs, you can view that they are equals!
narasiman_jayachandran_2b5374
Ok... but .. is the MSIL produced by c# more optimized than vb.net
Thanks again.
Brian_Tucker
VB and C# compile both in MSIL... then substantially is the same...
If you want better performances you have to use unmanaged code with C++ or assembler...
centexbi