.net overheads

  • Thread starter Thread starter HomeUser
  • Start date Start date
H

HomeUser

Hello,
I am interested in the overheads in running a VB.NET application on a client
machine. What are the extra memory and CPU requirements for the framework?
Is a new instance of the framework created when you start a .Net application
or is it similar to a DLL and just has to be resident on the machine?
Thanks.
 
There is no instance of the framework as such.... it means
that all the .net class library dlls must be resident in
the GAC inside system32 (global assembly cache)
 
Back
Top