In Delphi you do not need to call Release, since Delphi calls it automatically when you set the reference to nil. i.e, instead of doing this:
[pascal]MyInterface._Release;
MyInterface := nil;[/pascal]
you simply say:
[pascal]MyInterface := nil;[/pascal]