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 |
How to set the debug mode
Explain the tools used for unit testing in ASP.Net MVC
can i change web.config settings from iis?
1 Answers HCL, ReadySoft, Wipro,
What is Dependency Injection in ASP.Net MVC
What is objectcontext? : Entity framework
Explain what is asp.net mvc?
Where is the new functionality in the .net framework 3.0 (such as wcf, wf, wpf, and cardspace) installed to? Is that different from where the .net framework 2.0 is installed to?
What's the difference between const and readonly ?
What is the difference between viewbag and viewdata in asp.net mvc?
mention what is the key advantage of using entity framework or ef?
what are the aggregate functions in ASP.NET?
will this code works fine? or will it gives error? Object obj=5; int i=6; i=i+obj;