I know that Using statement disposes out the object that is being created. Like if I wanted to do something like this:
Using(SqlConnection conn = new SqlConn
Thats just the same way you would do it without.
using(SqlConnection conn = new SqlConnection(connString)) { try{ //some code } catch(SqlException e) MessageBox.Show(e.Message); }