本文介绍了如何在C#中使用ExcelDataReader / Writer的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我正在尝试使用C#读取/写入xlsm文件,我正在尝试使用以下内容:
ExcelDataReader rd = new ExcelDataReader(fs);
但我实际上错过了ExcelDataReader的参考,有人可以告诉我所需的参考吗?我在使用部分中有以下内容:
使用System.IO;
使用Microsoft.Office.Interop.Excel;
谢谢。
I''m trying to read/write xlsm file in C#, I''m trying to use the following:
ExcelDataReader rd = new ExcelDataReader(fs);
but I''m actually missing the reference for "ExcelDataReader", could someone please tell me the required reference? I have the following in the using section:
using System.IO;
using Microsoft.Office.Interop.Excel;
Thanks you.
推荐答案
这篇关于如何在C#中使用ExcelDataReader / Writer的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!