Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
当您在 Excel 中打开工作簿时,它会显示您上次保存时正在查看的工作表。
当您使用 EPPlus 打开工作簿时,如何确定这是哪张工作表?
ExcelWorksheet activeSheet = Workbook.Worksheets.FirstOrDefault(f => f.View.TabSelected);
https://epplus.codeplex.com/discussions/456307