0

我能够获得excel数据和属性

DataSet Excel = new DataSet();
Excel.ReadXml(@"C:\Excel.xml");

知道如何在不将 excel 转换为 xml 扩展名的情况下获取所有 excel 数据和属性吗?

我目前正在研究 documentformat.openxml 并陷入困境,因此我不得不单独添加每个“表”。

IEnumerable<Row> dataRows = from row in orderSheet.Worksheet.Descendants<Row>() select row;
4

0 回答 0