使用工具 SpreadSheetLight我找不到如何读取电子表格文件的行。特别是表 1。
我遇到的两个问题是
- 我看不到获得行数的方法
我无法看到获取列索引这是我的代码
public void ParseExcelFile(FileInfo file) { using (SLDocument sl = new SLDocument()) { FileStream fs = new FileStream(file.FullName, FileMode.Open); MemoryStream msFirstPass = new MemoryStream(); SLDocument sheet1 = new SLDocument(fs, "Sheet1"); // There is no way that I can see to get the Rows foreach(var row in sheet1.Rows) { foreach(SLCell c in row) { // There is no way that I can see to get the Column Index switch(c.Column ) { case 1: //Handle data if cell is Column 1 break; case 2: //Handle data if cell is Column 2 break; case 3: //Handle data if cell is Column 3 break; } } } } }//func