If .Net has garbage collection they why do you have explicitly call IDisposable?
|
1
|
|||
|
|
|
Garbage collection is for memory. You need to dispose of non-memory resources - file handles, sockets, GDI+ handles, database connections etc. That's typically what underlies an |
|||
|
|
|
|
Because Objects sometime hold resources beside memory. GC releases the memory; IDisposable is so you can release anything else. |
||
|
|
|
|
because you want to control when the resources held by your object will get cleaned up. See, GC works, but it does so when it feels like it, and even then, the finalisers you add to your objects will get called only after 2 GC collections. Sometimes, you want to clean those objects up immediately. This is when IDisposable is used. By calling Dispose() explicitly (or using thr syntactic sugar of a using block) you can get access to your object to clean itself up in a standard way (ie you could have implemented your own cleanup() call and called that explicitly instead) Example resources you would want to clean up immediately are: database handles, file handles, network handles. |
||
|
|
|
|
Expanding a bit on other comments: The Dispose() method should be called on all objects that have references to un-managed resources. Examples of such would include file streams, database connections etc. A basic rule that works most of the time is: "if the .NET object implements IDisposable then you should call Dispose() when you are done with the object. However, some other things to keep in mind:
|
||||
|
|
|
In order to use the using keyword the object must implement IDisposable. http://msdn.microsoft.com/en-us/library/yh598w02(VS.71).aspx |
||
|
|
