IDisposable & ImageAttributes
'System.Drawing.Imaging.ImageAttributes': type used in a using statement must be implicitly convertible to 'System.IDisposable'
It turns out that the ImageAttributes class implements IDisposable, but the Dispose() method is not available on the Compact Framework. I really have no idea what to make of this. Is this a bug in the Compact Framework? Do I actually need to dispose of ImageAttributes objects?
While I'm on the topic of IDisposable, I'd like to ask why the documentation for classes doesn't point out that they implement IDisposable via inheritance? Considering how important it is to call Dispose() on IDisposable objects when you are done with them, it'd make sense to have this pointed out more clearly.
Anyways, any advice on how to handle disposing of the ImageAttributes class on the Compact Framework would be greatly appreciated.
Adrien.

