i have made a userControl library .. and it contains NetworkStream, StreamReader, FileStream
So do i have to Dispose them all when the form that has this userControl closes ??
I mean There's no such Form1_FormClosing(object sender,FormClosingEventArgs e)
in a userControl so when should i dispose those streams?
Does userControl1.Dispose() take care of that?
thanks in advance :)