I have the following code:
try{ using (StreamReader reader = new StreamReader(...), Encoding.ASCII)){
What will happen to StreamReader if there is an exception in the using block?
Should I add a finally clause where I close the stream?
Getah source share