If we want to construct our own Garbage collector what are
the steps things we have to do?
Answers were Sorted based on User's Feedback
//Use this
System.GC.Collect();
System.GC.WaitForPendingFinalizers();
| Is This Answer Correct ? | 8 Yes | 0 No |
Answer / suresh mediboyina
If we want to call the Garbage collector,use this command
system.gc.collect()
| Is This Answer Correct ? | 1 Yes | 0 No |
Answer / venu
Hi,
If you want to implement your own GC, you need to define
you own memory cleaning by implementing destructors.
Also you have configure your GC in a separate long running
thread which should be of Daemon Thread. (Background
thread).
Venu.
| Is This Answer Correct ? | 2 Yes | 3 No |
what do you mean by table-per-hierarchy?
Can you declare an override method to be static if the original method is non-static
How we can multiple submit buttons in ASP.Net MVC
What are the possible razor view extensions?
What are the ways to show data grid inside a data grid for a master details type of tables?
explain how you can load related entities in ef (entity framework)?
Who defines the CAS code groups
How we can call a javascript function on the change of a dropdown list in mvc?
What is the significance of nonactionattribute?
What is MVVM design pattern?
Explain JSON Binding?
What is rxjava used for?