Is there a way to force garbage collection?

Submitted by: Administrator
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().
Submitted by: Administrator

Read Online C# (Sharp) Programming Language Job Interview Questions And Answers