I have a class which has a static List<T>
field inside which I hold all my objects; each object represents a process that is running and its properties.
After the process finishes its job, the relevant object is removed from the List<T>
, then my UI is updated.
After the object is removed from my list, should I change this object to null
to free resources?