[IronPython] COM Interop / Dispose wierdness

2006-04-17 Thread Dan Shechter
Hi, I have a c# class which is a wrapper around the WMF (Windows Media Format) SDK. One of the classes, which wraps the IWMMetadataEditor interface roughly looks like this: namespace WMFSDKWrapper { public class MetadataEditor : IDisposable, IEnumerable { bool isDisposed = false;

Re: [IronPython] COM Interop / Dispose wierdness

2006-04-17 Thread Dino Viehland
Shechter Sent: Monday, April 17, 2006 3:38 AM To: 'Discussion of IronPython' Subject: [IronPython] COM Interop / Dispose wierdness Hi, I have a c# class which is a wrapper around the WMF (Windows Media Format) SDK. One of the classes, which wraps the IWMMetadataEditor interface roughly looks like