Imagine you make a big app and objects fill up memory. You do not want to watch every object or worry about memory leaks. .NET garbage collection works as the automatic memory manager in .NET. It gives automatic memory help and keeps your apps running well. The garbage collector watches object references and takes back memory when objects cannot be reac…

