I am wondering why an application in VB.net (2 buttons and a internet browser controll) takes up 19,000 k of memory..
while the same app in vb takes up only 8,000 kb
is it something i missed or is vb.net that memory using
Printable View
I am wondering why an application in VB.net (2 buttons and a internet browser controll) takes up 19,000 k of memory..
while the same app in vb takes up only 8,000 kb
is it something i missed or is vb.net that memory using
VB.net doesn't clear down memory until it has to. This is a trade off between time taken to clear memory and memory saved...check your garbage collection settings (see GC in the help) for details.