If you implement IDisposable, then it is generally expected that you would also
implement a finalizer. Implementing one without the other is usually not a good
idea.
http://msdn.microsoft.com/en-us/library/b1yfkh5e(v=vs.100).aspx
Keith Rome
Senior Consultant and Architect
MCPD-EAD, MCSD, MCDB
On Sun, Feb 12, 2012 at 6:44 PM, Keith Rome wrote:
> I am fairly sure it is no different than when using disposable objects in
> any .NET application. If you don’t call IDisposable.Dispose() directly (or
> via the “using()” statement), then those objects will be disposed via their
> finalizer whe
I am fairly sure it is no different than when using disposable objects in any
.NET application. If you don’t call IDisposable.Dispose() directly (or via the
“using()” statement), then those objects will be disposed via their finalizer
when the GC collects them. This happens automatically and fai
Hi ironpython,
Here's your Daily Digest of new issues for project "IronPython".
In today's digest:ISSUES
1. [New issue] IronPython Android Support
2. [New issue] IronPython iOS Support
3. [New comment] Implement _sqlite3 module
4. [Status update] Quoting in MSBuild files
---