我想把一个数据写道一个已经存在的(@"D:\Excel.xls", excel文件中的cell[0,0] 
但是 这行出现了错误: 
    Excel.Worksheet xlssheet = (Microsoft.Office.Interop.Excel.Worksheet)workbook.get_Item(1); 
代码如下,请各位高手帮忙啊。   Excel.Application objApp = new Excel.Application(); 
            Excel.Workbooks workbook = objApp.Workbooks; 
          
            workbook.Open(@"D:\Excel.xls", Missing.Value, Missing.Value, Missing.Value, Missing.Value,Missing.Value, Missing.Value, Missing.Value, Missing.Value, Missing.Value, Missing.Value, Missing.Value, Missing.Value, Missing.Value,Missing.Value);             
            Excel.Worksheet xlssheet = (Microsoft.Office.Interop.Excel.Worksheet)workbook.get_Item(1); 
            xlssheet.Cells[0, 0] = "123";