How can I append object[, ]
data in Excel using EPPlus?
I'm using the following code but it returns System.Object
as the result in Excel.
object[,] rowdate = new object[dt.Rows.Count, Nodes.Split(',').Length * 2 + 4];
ExcelRange _excelRange = _excelSheet.Cells[excelRange];
_excelRange.Value = rowdate;