1) When I create an object, where it has arrays and large variables, setting them to null
, will it help with the reduction? Within a method Dispose()
- being that before they were with some value.
2) When I call a Dispose()
, either by block using
or manually, will events still fire? Will they still have these records?
3) Even after a Dispose()
, does the object still exist? Because it looks like it is not deleted, then Dispose()
would only be to free resources while Finalize()
does not call?
- What tips could give me to improve and optimize this issue of memory release?