While browsing some code online I've come across the following:
~Disposable()
{
Dispose(false);
}
This doesn't produce any compiler errors, is the '~' doing anything in particular or why is it there?
While browsing some code online I've come across the following:
~Disposable()
{
Dispose(false);
}
This doesn't produce any compiler errors, is the '~' doing anything in particular or why is it there?