Tag: C# interview questions: How Does Garbage Collection Work in C#?
-
C# interview questions: How Does Garbage Collection Work in C#?
•
How Does Garbage Collection Work in C#? Garbage collection (GC) in C# is a memory management system provided by the .NET runtime (CLR). Its purpose is to automatically manage memory allocation and release unused objects, helping developers avoid memory leaks and freeing them from manual memory management tasks like in…