Checking empty Excel cells
I'm assigning values to cells in an excel document using the code:
excelObj.Cells[rowIndex,colIndex] = "1";
Is there a simple, quick way of first checking if this specific cell is empty before inserting the value? You can't access the content of the cell by getting the value of excelObj.Cells[rowIndex,colIndex]