In .NET, is there a simple way for a class to be notified as it falls out of scope?
|
|
Yes, with some languages. C++/CLI will emit Dipose calls for IDisposable implementers when their non-heap allocations drop out of scope (effectively giving them the same semantics as stack allocated resource in normal C++). Moreover, C++/CLI destructor syntax of ~Classname becomes an implementation of Dispose (and makes the class implement IDisposable). I would expect other languages with traditional deterministic destruction to adopt this policy as time goes on. As others have mentioned, you can emulate it in C# with "using", but it's not quite the same. |
||
|
|
|
|
If it implements IDisposable and you're using a using block, sure. |
||
|
|
|
|
No. If you need to clean up resources other than memory, implement IDisposable and create your objects with |
|||
|
|
|
|
No there isn't. |
||
|
|
|
|
No, there is no deterministic finalization in any .NET language. The garbage collector is responsible for finalizing objects that have no roots in the application. |
||||
|
|
|
If it implements IDisposable, your Dispose() method would find out:
otherwise no, because your object is just 'hanging out' until GC |
|||
|
|
|
|
You could use a finalizer. It would be called once garbage colelcted, but not immediately after leaving scope. http://www.switchonthecode.com/tutorials/csharp-tutorial-object-finalizers |
||
|
|
