1
vote
1answer
51 views
Why is NHibernate AdoTransaction’s finalizer called?
I'm profiling out unit & integration tests, and I find the a lot of the time is spent on the finalizer of NHibernate.Transaction.AdoTransaction - this means it is not getting d …
5
votes
3answers
93 views
Why doesn’t Thread implement IDisposable?
I noticed that System.Threading.Thread implements a finalizer but not IDisposable. The recommended practice is to always implement IDisposable when a finalizer is implemented. Jeff …
0
votes
4answers
74 views
Object.Finalize() override and GC.Collect()
I cannot seem to understand the behavior of GC.Collect() under the presence of a class overriding Object.Finalize(). This is my base code:
namespace test
{
class Foo
{
~Foo() …
3
votes
1answer
38 views
Gracefully finalizing the SoftReference referent
I am using a search library which advises keeping search handle object open for this can benefit query cache. Over the time I have observed that the cache tends to get bloated (few …
1
vote
2answers
36 views
Testing Finalizers and IDisposable
Hi,
The question is how can I test the fact that object disposes resources when finalise is called.
The code for the class:
public class TestClass : IDisposable {
public boo …
1
vote
2answers
53 views
Is it safe to call an RCW from a finalizer?
I have a managed object that calls a COM server to allocate some memory. The managed object must call the COM server again to free that memory before the managed object goes away …
5
votes
5answers
323 views
Static Finalizer
What is the right way to perform some static finallization?
There is no static destructor. The AppDomain.DomainUnload event is not raised in the default domain. The AppDomain.Pro …
1
vote
3answers
134 views
Proper cleanup of WPF user controls
I am relatively new to WPF, and some things with it are quite foreign to me. For one, unlike Windows Forms, the WPF control hierarchy does not support IDisposable. In Windows Forms …
1
vote
2answers
44 views
DataGridViewRow not being Garbage Collected
I have a DataGridView being regularly populated via data-bound objects, and the number of rows can potentially become large, say many thousands during a 'logging cycle'.
When a ne …
5
votes
3answers
63 views
Can code be run when an object falls out of scope in .Net?
Is there any way to "automatically" run finalization / destructor code as soon as a variable loses scope in a .Net language? It appears to me that since the garbage collector runs …
1
vote
4answers
124 views
When would dispose method not get called?
I was reading this article the other day and was wondering why there was a Finalizer along with the Dispose method. I read here on SO as to why you might want to add Dispose to th …
0
votes
2answers
87 views
Is this a legitimate alternative to the “traditional” dispose pattern for class hierarchies?
I am not a fan of boilerplate code: copy-paste reuse is potentially error-prone. Even if you use code snippets or smart templates, there is no guarantee the other developer did, wh …
0
votes
3answers
139 views
Error: Do not override object.Finalize. Instead, provide a destructor
Getting the above error in following code. How to rectify it. Thanks.
Please look for
protected override void Finalize() { Dispose(false); }
in the below code.
using Micro …
0
votes
3answers
110 views
What are the Finalizer Queue and Control+ThreadMethodEntry?
I have a WindowsForms app that appears to leak memory, so I used Redgate's ANTS Memory Profiler to look at the objects I suspect and find that they are only held by objects already …
0
votes
3answers
66 views
(.net) CriticalFinalizerObject - What does it really do?
Hello. My understanding about this class is that you should use it when you want to be sure that the Finalizer(destructor) or the class is called, but from a couple of tests I did, …
