Problem:
How to finalize an instance of a .NET class ?
Resolution:
The .Net CLR runtime will Garbage Collect at various points. It will clear objects that cannot be reached. In COBOL you could set and object reference to null (or to another object). The object would not be reachable and therefore Garbage Collected.
Old KB# 6975