Hi to all,
I want to know if more then one VB.net compiled Applications are running on one computer simultaneously, Will the share .NET Framework loaded into memory or they load personal set of it ?
Thanks
Parminder
Printable View
Hi to all,
I want to know if more then one VB.net compiled Applications are running on one computer simultaneously, Will the share .NET Framework loaded into memory or they load personal set of it ?
Thanks
Parminder
The framework is just a base set of functionality that all .NET apps depend on but nothing gets loaded into memory until its needed. So each application loads its own dependencies and will have its own instances and in so doing will take memory for those instances. So the Framework itself doesn't get loaded except as needed but each instance of an object regardless of what application it is in will require its own space in memory.
Sir Edneeis,
Thank you for your reply.