How to free the memory that is not used by an object in
garbage collection?
Answers were Sorted based on User's Feedback
Answer / venky
Garbage collection is automatic system we not need to call garbage collector manually...
| Is This Answer Correct ? | 13 Yes | 2 No |
Answer / magesh
Garbage collection is automatic system, But it's take time
remove the object. You dispose the object when you work
heavy large application.
| Is This Answer Correct ? | 7 Yes | 0 No |
Answer / srinivas
in garbage collection,heap is divided into
generations,g1,g2,g3.all available objects stored in g1,if
g1 is full,then garbage collector performs the collection
process,in that fist identify the ideal object and used
objects,second delete the used objects and ideal objects are
put in to finalization queue,and then use genarations.
then we get free memory in garbage collection
| Is This Answer Correct ? | 5 Yes | 0 No |
Answer / avinash
Using "GC.Collect();" unused objects can be removed.
| Is This Answer Correct ? | 5 Yes | 1 No |
What does CLR do as soon as an assembly is created ?
If we write return statement in finally block will it works fine or throws any error?
What is the full form of sp?
What is entity framework? : Entity framework
What is strong name and which tool is used for this ?
4 Answers Accenture, BirlaSoft,
Can you please explain the request flow in ASP.NET MVC framework?
Requirement is: try { \\SQL Query } catch(Exception i) { print a } catch(SQLQueryException e) { \\SQL Query } Qu)I Got Exception in "try" block. Which "catch" statement (i.e. 1st catch or 2nd catch ) catches the exception and Why???
How does CAS work
What is the difference between windows vista and .net framework 3.0 ?
What are Model Binders in ASP.Net MVC?
what is lazy loading in entity framework?
What is .net core framework?