Infolink

 

Search This Blog

Showing posts with label Memory Management and Garbage Collection. Show all posts
Showing posts with label Memory Management and Garbage Collection. Show all posts

Oct 28, 2012

Asp.Net Tutorial (PART-11)

Memory Management and Garbage Collection

In any object-oriented programming environment, there arises the need to instantiate and destroy objects. Instantiated objects occupy memory. When objects are no longer in use, the memory they occupy should be reclaimed for use by other objects. Recognizing when objects are no longer being used is called lifetime management, which is not a trivial problem. The solution the CLR uses has implications for the design and use of the components you write, so it is worth understanding.
Related Posts Plugin for WordPress, Blogger...