डिस्पोजेबल ऑब्जेक्ट के बारे में मेरे अन्य प्रश्न के अनुसार , क्या हमें एक ब्लॉकिंग ब्लॉक के अंत से पहले बंद () कॉल करना चाहिए?
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();
}