1
我用下面的代碼從excel中檢索數據。但它跳過第一個空列,因爲Usedrange屬性。我怎樣才能包括呢?Excel Interop - 如何獲取第一個未使用列使用的範圍數據?
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也。