What is Garbage Collection in .Net and what is the 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 | 4 No |
Post New Answer View All Answers
What are the differences between an interface and an abstract class in .net?
When a Static Constructor called in .NET?
Sql Queries: A Table will be given Omiting Duplicate rows and adding a new column
What is file extension of Webservices in .Net?
Explain garbage collection?
What is the difference between override and overload in a method?
How to debug failed assembly binds?
Explain the difference between the while and for loop. Provide a .net syntax for both loops?
What is different between webusercontrol and in webcustomcontrol?
Explain what is reflection in microsoft .net context?
How do you create threading in.net?
How to instantiate a delegate?
What is an anonymous method and how is it different from a lambda expression?
What is dot net architecture?
What is marshling?