A
Andrew Durdin
Concur. A while back I thought I could speed up a VB app that had
a lot of bit-twiddle operations by writting a C-based DLL for it.
Turns out it ran slower that way!
Having used the VC++ debugger to step through compiled VB code, I
can attest to it being compiled down to native. Ratio is much higher
than with, say C or C++... I'd WAG it at about 10:1 or slightly more.
On the other hand, I had to do base64 decoding of a string in a VB
app; I got a very significant speed increase by rewriting that portion
with a C DLL. So YMMV I guess