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
You don't do it inside the using
using
try { using(SqlConnection conn = new SqlConnection(connString)) { // Some code for when "conn" is succesfully instantiated } } catch (SomeSpecificConnectionInstantiationException ex) { // Use ex to handle a bizarre instantiation exception? }