You don't. Unless class implements "IDisposable" you don't care about freeing memory - it gets done automagically by garbage collector when the references are removed (not immediately, but trust me, you don't need to care about it..).
When class implements "IDisposable" you should call method...