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.
使用 C#,哪种方法会给我 8 行计数?现在我正在使用 CurrSheet.Rows.CurrentRegion.EntireRow.Count 但它只返回 2。所以它在第一个空白行上停止。
这是电子表格的屏幕截图和我的问题:
提前致谢!
如果您不想使用 Excel 命令,请使用 Streamreader 并读取文件:
Streamreader sr=new StreamReader("yourfilepath") using (sr) { int i=0; while (!sr.EndOfStream) { sr.ReadLine(); i++; } }
怎么样
ActiveSheet.UsedRange.Rows.Count