UncleRonin
Well-known member
How do you close an application so that it no longer uses ANY memory at all? Does Close() work for this? Or must you Dispose() of each and every other control and component?
UncleRonin said:Okay. How do you open the task manager on a mobile device? By 'close your main form' do mean use the Close() method or the Dispose() method? I did a test using each of the methods and Close() did not clear all the allocated memory. Dispose(), however, did.