Tagged Questions

4
votes
1answer
237 views

C# - What does “destructors are not inherited” actually mean?

Section 10.13, Destructors, of the C# Language Specification 3.0 states the following: Destructors are not inherited. Thus, a class has no destructors other than the one which may be declared in …
2
votes
8answers
271 views

Finalizer launched while its object was still being used

Summary: C#/.NET is supposed to be garbage collected. C# has a destructor, used to clean resources. What happen when an object A is garbage collected the same line I try to clone one of its variable …
0
votes
0answers
15 views

Find finalizable object in asp.net application

Hi all, Is there any way to scan through a asp.net code base and figure out which object is finalizable? I am asking since I am trying get object away from the finalization queue to improve …