Garbage Collection and Resource Management In C#

What is garbage collection In C# ?

In computing, garbage collection (also known as GC) is a form of automatic memory management. The garbage collector attempts to reclaim the memory used by objects that will never be accessed again by the application. Garbage collection was invented by John McCarthy around 1959 to solve the problems of manual memory management in his recently …

What is garbage collection In C# ? Read More »

Scroll to Top