无法对空引用异常执行运行时绑定

时间:2011-02-08 23:35:27

标签: c# excel exception

我正在尝试使用C#查找Excel表的维度,方法是查找第一列(包含日期)和标题行中的第一个空单元格。

这是我现在正在使用的代码:

public static void findingTableBounds()
    {
        string dateCol = "";
        ArrayList dateColumn = new ArrayList();
        ArrayList numberOfColumns = new ArrayList();

        for (int column = 1; column < currentRow; column++)
        {
            dateCol = ((Excel.Range)workSheet.Cells[currentRow, 1]).Value2.ToString();
            if (dateCol != "")
            {
                dateColumn.Add(dateCol);
                currentRow++;
                totalRow++;
                Console.WriteLine("Total Row: {0}", totalRow);            
            }
            else
            {
                Console.WriteLine("Total Row: {0}", totalRow);
                currentRow = 2;
            }
        }

**注意:此方法有一个结束括号,我没有包含它,因为还有另一个for循环与上面的代码完全相同但只有多少列。

错误发生在“dateCol =((Excel.Range)workSheet.Cells [currentRow,1])。Value2.ToString();”我很确定它会发生,因为我正在尝试在string为非可空类型时将null值(单元格)分配给dateCol(字符串)。不幸的是,我不确定如何解决这个问题。

2 个答案:

答案 0 :(得分:9)

将空值应用于字符串是可行的,但是如果 ((Excel.Range)workSheet.Cells[currentRow, 1]).Value2为null,则它没有函数ToString()不是函数,因此尝试执行它不起作用。它说它是什么类型的例外?因为可能存在更大的问题...

答案 1 :(得分:1)

关于上述帖子(我没有足够的声誉对其发表评论)

为了帮助其他失去的灵魂,我增加了这篇文章并将添加:

  

if(((Excel.Range)workSheet.Cells [currentRow,1])。Value2!= null){...}。
- Sylvain 2015年2月16日21:07

我有一个问题并且使用了这个,但发现,至少在我的情况下,我改为:

if (excelWorksheet.Cells[row, column].Value2 != null)
{
  return ((Excel.Range)excelWorksheet.Cells[row, column]).Value2.ToString();
}
return "No data";

至少对我的特定情况起作用了。在if创建的错误中包含Excel.Range部分。