最近在做个数据上报的功能,开发工具是C#,要求导出DBF格式,但是超出255列的数据生成DBF失败,求大神指教
https://www.cnblogs.com/wz122889488/archive/2015/07/30/4687906.html
string testPath = AppDomain.CurrentDomain.BaseDirectory;
var odbf = new DbfFile(Encoding.GetEncoding(936));
odbf.Open(Path.Combine(testPath, "test.dbf"), FileMode.Create);
找不到DbfFile这个方法
通过文件系统创建dbf文件