Termina de usar cerrar una conexión SQL abierta

Si envuelvo una conexión SQLConnection en un Using, ¿debería cerrarla o el uso final la maneja?

using cn as new system.data.sqlclient.sqlconnection()
    cn.open
    '{do a bunch of other stuff with commands and datareaders here}
    cn.close 'Do I need this?
end using