文件帮助程序 ExcelStorage 从资源读取模板

本文关键字:读取 资源 帮助程序 ExcelStorage 文件 | 更新日期: 2023-09-27 18:31:32

Filehelpers ExcelStorage具有属性public string TemplateFile { get; set; }

出于这个原因,我必须将我的模板文件保存在程序目录(bin)中。但是,如果我想将我的模板文件用作嵌入式资源,有什么方法仍然可以将其用作ExcelStorage中的模板吗?

文件帮助程序 ExcelStorage 从资源读取模板

TemplateFile 属性用于指定写入数据时要使用的.xls文件,而不是用于记录类。

但是,您应该能够使用运行时记录类。像这样:

// myTemplate is the extracted resource as a string
string mClass = myTemplate;
Type t = ClassBuilder.ClassFromString(mClass); 
var storage = new ExcelStorage(t);
//etc.