The tag has no wiki summary.

learn more… | top users | synonyms

3
votes
1answer
61 views

Calling SuppressFinalize multiple times

Is there any downside of calling GC.SuppressFinalize(object) multiple times? Protected Dispose(bool) method of the dispose pattern checks whether it is called before but there is no such check in the ...
0
votes
1answer
112 views

Why Finalizer should not be called after manually calling destructor ( by delete) in C++ CLI

After refer this article which talks about the difference of destructor& finalizer IN C++ CLI, I wonder why compiler add some instrs. to suppress the finalize in destructor? Dose finalize ...
1
vote
1answer
99 views

what class calls SuppressFinalize in its constructor such that your dispose call is useless?

There are some classes such as DataTable who already called SuppressFinalize in its constructor and so there is no point to call dispose/use using on it. (because dispose is for releasing earlier but ...
3
votes
3answers
207 views

ReRegisterForFinalize SuppressFinalize real life example

I was just reading this article http://msdn.microsoft.com/en-us/magazine/bb985010.aspx and I couldn't think of any real life sample for using ReRegisterForFinalize SuppressFinalize could any one ...
13
votes
4answers
1k views

C# language: Garbage Collection, SuppressFinalize

I'm reading "The C# Language", 4th Edition, it talks about garbage collection as below: "BILL WAGNER: The following rule is an important difference between C# and other managed environments. ...
2
votes
2answers
271 views

Should I implement GC.SupressFinalize on IDisposable AND Finalize?

The code review checklist in my new client place has the following - Class implementing Dispose and Finalize should have a call to GC.SupressFinalize in Dispose implementation Why? Should it ...
6
votes
6answers
2k views

What's the purpose of GC.SuppressFinalize(this) in Dispose() method?

I have code that looks like this: /// <summary> /// Dispose of the instance /// </summary> public void Dispose() { if (_instance != null) { _instance = null; // ...
7
votes
4answers
1k views

Why should we call SuppressFinalize when we dont have a destructor

I have few Question for which I am not able to get a proper answer . 1) Why should we call SuppressFinalize in the Dispose function when we don't have a destructor . 2) Dispose and finalize are used ...
1
vote
1answer
96 views

In the TimedLock why is SuppressFinalize(tl.leakDetector) needed?

http://www.interact-sw.co.uk/iangblog/2004/04/26/yetmoretimedlocking Why is this line needed? System.GC.SuppressFinalize(tl.leakDetector); I would have thought the finalizer should not be suppress ...
6
votes
5answers
3k views

IDisposable GC.SuppressFinalize(this) location

I use a default IDisposable implementation template (pattern) for my code. snippet: public void Dispose() { Dispose(true); GC.SuppressFinalize(this); } protected virtual void Dispose(bool ...