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
What is difference between static page and dynamic page?
Tell us the difference between the while and for loop. Provide a .net syntax for both loops?
why you wouldn't want to write into it even if you could
What are the deferred execution and the immediate execution in linq?
The project which you have made, which methodology did you use?
Why do we use the “using” statement?
What is interface and abstract class in .net?
Explain what is a delegate?
What is Complex Class in .NET?
What is the difference between a debug and release build?
What are three common acronyms used in .net, and what do they stand for?
Explain what is an interface and what is an abstract class? Please, expand by examples of using both. Explain why?
What's wrong with a line like this? Datetime.parse(mystring);
How to convert a .NET object into COM operabililty?
How to get the number after decimal point in .net?