我正在使用 Excel.Interop
这是遍历 excel 单元格的代码:
for(i=1 ; i< 10; i++)
{
for (int j = 1; j < 10; j++) // 10 is no of columns(static)
{
oRng = (Microsoft.Office.Interop.Excel.Range)oSheet.Cells[i + 1, j+1]; // getting value here(its "")
string strValue = oRng.Text.ToString();
dr[j - 1] = strValue;
}}
我在 excel 表中隐藏了一个列,当我遍历该单元格时,我得到了""
. 我不知道应该做什么才能获得该单元格的价值。
谢谢
PS:dr
这里使用的是一个DataRow
,我将其进一步存储在DataSet