Hello I am currently using the version 17.3.0.19 of SyncfusionXlsIO.Net.Core and I've got an issue with the apply marker when I have a column Image (byte[]) inside my DataTable.
DataColumn.DataType = typeof(byte[]);
DataRow['Image'] = File.ReadAllBytes(path)
When my table has more than 1 image it works perfectly (the applymarker inserts the images), but when the DataTable contains only one row, it write in the cell : System.Byte[]
I dont understand why it works for more than one row only.
Than you,
Nicolas