Essentially you just want to make it Available for the Garbage Collector to come get it - like unreference it from items. If it has no references and isn't being used, then the GC can come "collect" that memory. You can also force it (GC.Collect) but generally it's enough to make it available for pickup and it will be dealt with accordingly
