What is Garbage Collection in .Net? Garbage collection process?
Answer Posted / guest
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.
| Is This Answer Correct ? | 3 Yes | 3 No |
Post New Answer View All Answers
Explain how to spawn a thread?
What are the different types of Classes in .NET?
What is common language specification (cls)?
Should I use readerwriterlock instead of monitor.enter/exit?
What is .net3.5?
What is reflection in microsoft .net context?
What are code contracts?
What does mean by .net framework?
Is .net is a language?
What is the use of common language runtime?
What is stored procedure ? how we use it in .NET ?
What is the advantage of .net?
Explain what are the deferred execution and the immediate execution in linq?
what are connection strings?
Can you write a class without specifying namespace?