I create ADODB recordset, command etc in my winform app and was wondering if I should implement IDisposable on their wrapper classes to free them. Are they unmanaged resources?
And to release any unmanaged resource, should call the Marshal.ReleaseObject(resourceInstance) or just setting it to null is enough?
Thanks in advance Nishitha