Czy muszę zamknąć () SQLConnection, zanim zostanie usunięte?

Na moją drugąpytanie tutaj o obiektach jednorazowego użytku, czy powinniśmy wywołać Close () przed końcem bloku używanego?

using (SqlConnection connection = new SqlConnection())
using (SqlCommand command = new SqlCommand())
{
    command.CommandText = "INSERT INTO YourMom (Amount) VALUES (1)";
    command.CommandType = System.Data.CommandType.Text;

    connection.Open();
    command.ExecuteNonQuery();

    // Is this call necessary?
    connection.Close();
}