我正在使用ClosedXML,它有一个名为InsertData
的方法来插入DataTable
,如下所示:
var rangeWithData = worksheet.Cell(row, cell).InsertData(dataTable.AsEnumerable());
如此处所述:ClosedXML Inserting data
在我的xml中,我有一个合并列,它会导致错过数据表中的一列。
有没有办法处理它仍然使用InsertData
方法或我应该循环数据表...?
答案 0 :(得分:0)
如果您事先知道哪些单元格已合并,则可以使用InsertData
并相应地准备DataTable
。
如果您不知道必须使用循环并在到达合并单元格时移动数据。