Analyzing your prompt, please hold on...
An error occurred while retrieving the results. Please refresh the page and try again.
To read cell values in more than one thread simultaneously, set Worksheet.Cells.MultiThreadReading to true. If you do not, you might get incorrect cell values.
The following code:
If you comment this line:
testWorkbook.Worksheets[0].Cells.MultiThreadReading = true;
then the following message is displayed:
if (s != "R" + row + "C" + col)
{
MessageBox.Show("This message box will show up when cell values read are incorrect.");
}
Otherwise, the program runs without showing any message, which means that all values read from the cells are correct.
Analyzing your prompt, please hold on...
An error occurred while retrieving the results. Please refresh the page and try again.