Hi Team,
We are trying to convert the memoryStream to Csv like the below code but after saving the file to csv it is adding one empty row … tried to delete the empty row using TxtSaveOptions.TrimLeadingBlankRowAndColumn to true … but that is not deleting this empty row at the end of file … is there a way we can achieve this?
using MemoryStream testStream = new MemoryStream();
using Workbook workbook = new Workbook(memoryStream);
workbook.Save(testStream, SaveFormat.Csv);