What is Garbage Collection in .Net? Garbage collection process?
Answers were Sorted based on User's Feedback
Answer / pradeep jagadeesan
Garbage collection is a least priority thread, which will
collect unused objects from memory.
Pradeep Jagadeesan
| Is This Answer Correct ? | 8 Yes | 1 No |
Answer / 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 |
Answer / latha
Garbage collection automatically allocates memory.we forgot
to release this object.Its releases.
| Is This Answer Correct ? | 2 Yes | 5 No |
Describe the Managed Execution Process
How we can achieve Connection pooling in .Net?
Major role of CLR for CAS
what is the meaning silverligt control
what will do to avoid prior case?
Without UDDI, is it possible to access a remote web service ?
1 Answers RR, TCS, Tech Mahindra,
Describe difference between inline and code-behind?
What is difference between .net core and .net standard?
What are the difference bbetween value type & reference types ? Example from .net. Integer & struct are value types or reference types in .net?
Can a try block have more than one catch block?
is c#.net supports multiple inheritance?
What is deferred execution vs. Immediate execution in linq?