Is there ever a valid reason to use the Close method on a stream instead of Dispose?
Asked
Active
Viewed 126 times
1 Answers
2
Only in System.Windows.Forms.Form and System.Data.SqlClient.SQLConnectoin do Close and Dispose have different behavior. This has to do with dispose being hidden in situations where the behavior was not clear in context. This is more deeply explained here MSDN Difference Between Close and Dispose

Idle Crow
- 36
- 4
-
1I know that this was a duplicate question, but this is what I was trying to get at. Thanks! – Edd Feb 08 '16 at 17:53