我正在使用此代码获取文件的第一个单元格
Excel.Application excelApp = new Excel.Application();
excelApp.Visible = true;
string workbookPath = "c:/Users/Edgar/Desktop/base/Libro1.xlsx";//C:\Users\Edgar\Desktop\base\Libro1.xlsx
Excel.Workbook excelWorkbook = excelApp.Workbooks.Open(workbookPath, 0, false, 5, "", "", false, Excel.XlPlatform.xlWindows, "", true, true, 0, true, false, false);
Excel.Sheets excelSheets = excelWorkbook.Worksheets;
excelApp.Visible = false;
string currentSheet = "Hoja1";
Excel.Worksheet excelWorksheet = (Excel.Worksheet)excelSheets.get_Item(currentSheet);
Excel.Range excelCell = (Excel.Range)excelWorksheet.get_Range("A1", "A1");
string str = (excelCell.Cells as Excel.Range).Value2;
MessageBox.Show(str);
但我想将填充 xlsx 的行数保存在一个变量中
我了解您没有听从其他问题的建议
使用 xlsx 文件而不在 c# 中打开 excel?
我们建议使用基于 open xml 的库
>>我想将 xlsx 中填充的行数保存在一个变量中
你能用吗
Worksheet.UsedRange 属性
那么你会