Question 1 of 28
Manage the object life cycle
Your application is using a lot of memory. Which solution should you use?
Set all references to null when you are done with them.
Use a caching algorithm to decide which objects can be freed.
Use a background thread to call GC.Collect() on a scheduled interval.
Turn all references into WeakReferences.