In an Access database, I have a column named Display which is of type Yes/No. I am fetching a table row and storing it in a string array named editDrData[]. Now, I want to check whether it is true or false. I tried the following, but it's not working. What is the right way to do this check?
if (Convert.ToBoolean(editDrData[15]) == false)