Arch4ngel
Well-known member
I got a big problem that I would like to solve.
I have an operation that MUST be executed right before the Finalize() instruction.
What I wanted to do... is to override it and put my instruction and do a base.Finalize() right after. However... VS.NET 2003 Professional (only my version) doesnt allow this kind of operation.
Ive already implemented the IDisposable interface so I might use Dispose().
Heres what I want to know :
I have an operation that MUST be executed right before the Finalize() instruction.
What I wanted to do... is to override it and put my instruction and do a base.Finalize() right after. However... VS.NET 2003 Professional (only my version) doesnt allow this kind of operation.
Ive already implemented the IDisposable interface so I might use Dispose().
Heres what I want to know :
- Does Dispose() is called by the GC ?
- If not... is there a way of doing what I want to know without trying to override the Finalize instruction ?