我使用下面的代码从 excel 中检索数据。但它会跳过Usedrange属性的第一个空列。我怎么能把它也包括在内?
Excel.Application xlApp;
Excel.Workbook xlWorkbook;
xlApp = new Excel.Application();
xlWorkbook = xlApp.Workbooks.Open(fileName);
Excel._Worksheet xlWorksheet = (Excel._Worksheet)xlApp.Workbooks[1].Worksheets[2];
Excel.Range excelCell = xlWorksheet.UsedRange;
Object[,] values = (Object[,])excelCell.Cells.Value2;
例子
UsedRange 返回 B、C 和 D。但我也需要 A。