I need to dispose of an object so it can release everything it owns, but it doesn\'t implement the IDisposable so I can\'t use it in a using block. How can I make the garbag
If the object goes out of scope and it have no external references it will be collected rather fast (likely on the next collection).