OK , so lets say I have built an Application in C# and when you are working with this application it uses a lot of the computer’s Memory and now I want to do something that when its Idle or I’m not working with it , it stops using the memory but I can go back and start working where I left off.
Is there anywhere to Temporarily pause the application so its not using the Ram ?
OK , so lets say I have built an Application in C# and when
Share
When the user minimizes your application, Windows will (eventually) swap its address space to disk, freeing up RAM for other programs.
You don’t need to do anything.