| Author: purushothaman 29 Aug 2008 | Member Level: Gold | Rating: Points: 3 |
hi see this link http://www.csharphelp.com/archives2/archive297.html --> tells the meaning and phases of gc http://msdn.microsoft.com/en-us/magazine/bb985010.aspx
|
| Author: D.Jeya kumar(JK) 29 Aug 2008 | Member Level: Diamond | Rating: Points: 5 |
Hi,
Garbage collection is a process of removing the unsed references of the objects created and are not disposed .It will be automatically removed and free the memory of the unsed reference is called Garbage collection.
For Ex.
Dim Objds new Dataset()
here Objds is a object and it the object is not freed by using the below code
Objds=nothing
or
Objds.Dispose()
will release the memory otherwise
after the object will be disposed after some time it will not be immediately free the memeory of the object.
Regards JK
|
| Author: Arun 29 Aug 2008 | Member Level: Bronze | Rating: Points: 2 |
hi.. If an object is no longer in use in the cache it automatically deletes the memory.it is known as garbage collection...
ARUN.A
|
| Author: chandramohan 29 Aug 2008 | Member Level: Gold | Rating: Points: 4 |
The process of transitively tracing through all pointers to actively used objects in order to locate all objects that can be referenced, and then arranging to reuse any heap memory that was not found during this trace. The common language runtime garbage collector also compacts the memory that is in use to reduce the working space needed for the heap.
|
| Author: Legend 29 Aug 2008 | Member Level: Silver | Rating: Points: 1 |
Refer this PDF
http://hplabs.hp.com/personal/Hans_Boehm/spe_gc_paper/preprint.pdf
|
| Author: Legend 29 Aug 2008 | Member Level: Silver | Rating: Points: 0 |
Refer the Attachement
 |