আমার অন্যান্য প্রশ্নে ডিসপোজেবল অবজেক্টগুলি সম্পর্কে , ব্যবহারের ব্লকটি শেষ হওয়ার আগে আমাদের কি ক্লোজ () কল করা উচিত?
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();
}