Releasing resources

ALX

Well-known member
Joined
Nov 16, 2005
Messages
253
Location
Columbia, SC
Programming Experience
10+
Here's another beginner's question from someone who's been doing this long enough to know better...
When we talk about disposing objects to free up used resources, is it possible that some undisposed resources could continue to take up memory after the program application has closed?
 
Many objects are automatically disposed when application closes, for example the main form and all objects there. Then CLR unloads the AppDomain that it created when application started, and that includes any cleanup that was left undone when application was running.
 
Back
Top