我正在使用电子表格库来使用 c# 读取 Excel 工作表(.xslx)值。
我可以使用以下代码读取单元格值
for (int col = stats.StartColumnIndex; col <= stats.EndColumnIndex; col++)
{
var value= sheet.GetCellValueAsString(stats.StartRowIndex, col); //where sheet is current sheet in excel file
}
我正在获取单元格值。但是我怎样才能得到单元格的数据类型呢?我已经检查了文档,但没有找到解决方案。
注意:对于 .xls 类型的 excel 文件,我使用 ExcelLibrary.dll 库,我可以使用以下代码轻松获取单元格的数据类型
for (int i = 0; i <= cells.LastColIndex; i++)
{
var type = cells[0, i].Format.FormatType;
}
但是在电子表格中没有类似的方法。