did visual basic 6 have native code or interpreted compiler

BirdDad

Golden Member
Nov 25, 2004
1,131
0
71
also did visual C++ 6 have native code?
I don't want to use .net as it is interpreted code
 

Apathetic

Platinum Member
Dec 23, 2002
2,587
6
81
Both VB 6 and Visual C++ 6 generate native code.

May I ask what you're writing that you're so concerned about speed?

Dave
 

Templeton

Senior member
Oct 9, 1999
467
0
0
Originally posted by: BirdDad
I don't want to use .net as it is interpreted code

Who told you that? Native code will be produced by the JIT compiler at run time - this has the advantage that specific optimizations may be done depending on the currently running target as well as hot spots observed in the running code. Also, you can produce completely native code in visual c++ 2k3/2k5, here's no need to write managed/.NET code unless you want.