Interview Questions

Is there a way to force garbage collection?

C# Interview Questions and Answers


(Continued from previous question...)

46. Is there a way to force garbage collection?

Yes. Set all references to null and then call System.GC.Collect(). If you need to have some objects destructed, and System.GC.Collect() doesn't seem to be doing it for you, you can force finalizers to be run by setting all the references to the object to null and then calling System.GC.RunFinalizers().

(Continued on next question...)

Other Interview Questions