VB.NET and VB6?

  • Thread starter Thread starter al
  • Start date Start date
A

al

Hi,

2 Q's:

-ith the introduction of .NET Framework, Is it suppsed for
applications take shorter or longer time to load and excute than VB6?

MTIA,
Grawsha
 
* (e-mail address removed) (al) scripsit:
2 Q's:

-ith the introduction of .NET Framework, Is it suppsed for
applications take shorter or longer time to load and excute than VB6?

Applications will take longer time to load because the MSIL code must be
JITted to native code. In general, .NET applications are very fast.
You can use "ngen.exe" (included in the .NET framework) to create a
native image of your MSIL application image on the destination computer
to reduce startup time.
 
Back
Top