According to several websites I have seen, and this MSDN page:
http://msdn.microsoft.com/en-us/library/yh598w02.aspx
when declaring a new object of a class that inherits from IDisposable, one should wrap that declaration in a "using" statement. OK, that sounds fair, but what classes implement IDisposable? From their very own example at the top of the MSDN page, they state that
"File and Font are examples of managed types..."
Well, if you look at the MSDN page for "File", you will see that the term "IDisposable" is not on that page even a single time.
Font, on the other hand, does list IDisposable as an implemented class on its MSDN page.

So, where is the list of all classes that inherit from IDisposable?
By the way, what do they mean by managed and unmanaged?

Skip