Ok, it's known that GC implicitly calls Finalize methods on objects when it identifies that object as garbage. But what happens if I do a GC.Collect()? Are the finalizers still executed? A stupid question maybe, but someone asked me this and I answered a "Yes" and then I thought: "Was that fully correct?"
|
|
|||||||||||||||
|
No no no. That is not known because in order to be knowledge a statement must be true. That statement is false. The garbage collector does not run finalizers as it traces, whether it runs itself or whether you call Here's an oversimplified sketch of how it works:
As I said, that's oversimplified; the exact details of how the finalizer queue works are a bit more complicated than that. But it gets enough of the idea across. The practical upshot here is that you cannot assume that calling Call the aptly named And of course, it goes without saying that you should only be doing this for debugging and testing purposes. Never do this nonsense in production code without a really, really good reason. |
|||||||||||||||||||||
|
|
Actually the answer "It depends". Actually there is a dedicated thread that executes all finalizers. That means that call to If you want to wait till all finalizers would be called you can use following trick:
|
|||
|
|
Yes, but not straight away. This excerpt is from Garbage Collection: Automatic Memory Management in the Microsoft .NET Framework (MSDN Magazine) (*)
(*) From November 2000, so things might have changed since. |
|||
|
|
|
When the garbage is collected (whether in response to memory pressure or Unless you call BTW, there is no guarantee finalizers will be called at all. From MSDN...
|
||||
|
|
