using(SqlCommand cmd = new SqlCommand())
{
...
}
is equivalent to writing,
SqlCommand cmd = new SqlCommand();
try
finally
cmd.Dispose();
Object.Dispose()