object-destruction

Why do finalizers have a "severe performance penalty"?

Effective Java says : There is a severe performance penalty for using finalizers. Why is it slower to destroy an object using the finalizers? ...

Static CComPtr Variable

Is it bad idea to have static CComPtr member variables in an application. Since we cannt control destruction of static variable and it can happen after CoUninitialze . ...