Garbage Collection in .NET helps deallocate memory in object heap, and in managed code, we do not get pointers or explicit memory allocation. So is it even possible to leak memory in .NET in literal sense, that is allocate memory to a pointer and lose handle to the pointer ? Now, in situations, where...