Reputation: 71
I have the following:
SqlDataReader reader = new SqlDataReader();
reader.Close();
I want to open the reader after I closed it. How can I do that?
Upvotes: 4
Views: 551
Reputation: 70307
No. Once something is closed (or disposed) in .NET, there is usually no way to reopen it.
Upvotes: 3