4
Reply

Is there a way to force garbage collection?

18y
9.1k
0
Reply

    GC.Collect();

    GC.Collect();

    GC.Collect();

    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().