Welcome to the Treehouse Community
Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.
Start your free trialAr33ss Leon
4,621 PointsThe use of Dispose()
I have read the links that instructor put in the description but I did not get all. In few words using Dispose closes your connection right? When data is loaded, Dispose closes your connection when there is no data left? (avoids memory leaks)
Am I right? if not, give me a simplified explanation or any example :(
1 Answer
Steven Parker
231,210 PointsYou are quite right, but you don't always have to use "Dispose" directly. One good alternative that I know is shown in the courses is a "using" statement.
A resource accessed that way is automatically disposed when the code leaves the scope of the "using" block.