Answer Posted / kirti
One of the good features of the CLR is Garbage Collection, which runs in the background collecting unused object references, freeing us from having to ensure we always destroy them. In reality the time difference between you releasing the object instance and it being garbage collected is likely to be very small, since the GC is always running.
[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.]
Heap:
A portion of memory reserved for a program to use for the temporary storage of data structures whose existence or size cannot be determined until the program is running.
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
How can I return string result from action in asp.net mvc?
How we can multiple submit buttons in ASP.Net MVC
How do I use partial view?
Why to use Html.Partial in ASP.Net MVC?
Explain the advantage of packaging over xcopy in .net?
How large is the .net framework 3.0?
What is controllercontext?
What is the difference between old ADO.NET and Entity framework coding techniques?
Is it possible to combine asp.net webforms and asp.mvc and develop a single web application?
Is .net core replacing .net framework?
What are the options can be configured in AJAX helpers?
What is the use of razor view engine?
What operating systems will the .net framework 3.0 be available for?
what is eager loading?
Can I set the unlimited length for "maxjsonlength" property in config?