Hi,
Say I have a class Student which has a static field Count. I need to increment it whenever a new object of Student is created and decrement it whenever any object of Student is destroyed.
I know that increment can be done in the constructor but what about decrement, since there is no destructor.
Loading
Bechir BejaouiPosted Mar 14, 2009, 11:43 AM
class Student : IDisposable
{
....................
public void Dispose()
{
Student.Decrement();
}
}