Language Basics C# Book

Finalizer is execuated before garbage collector collects the unreferenced objects.
The finalizer has the same name with the type.
The finalizer is prefixed ~.
class Rectangle{
~Rectangle(){
}
}