我正在尝试获取 Column 中的最后一行A
。有谁知道为什么以下不编译?
好像不喜欢.End
……</p>
Microsoft.Office.Interop.Excel.Worksheet xlWorkSheet;
xlWorkSheet =
(Microsoft.Office.Interop.Excel.Worksheet)xlWorkBook.Worksheets.get_Item(1);
int iLastRow = xlWorkSheet.Cells[1,"A"]
.End(Microsoft.Office.Interop.Excel.XlDirection.xlUp)
.Row;