Hi
Im using Syncfusion for the first time, and i Need to open a csv file and save it as xlsx. When the file is saved, it cant opened with MS Excel 2013, ist being corrupt. My Code below:
ExcelEngine excelEngine = new ExcelEngine();
IApplication application = excelEngine.Excel;
IWorkbook workbook = await application.Workbooks.OpenAsync(myCSVFile, ",");
StorageFile myXLSXFile = await localFolder.CreateFileAsync("file.xlsx", CreationCollisionOption.ReplaceExisting);
await workbook.SaveAsAsync(myXLSXFile);
workbookToExport.Close();
excelEngine.Dispose();
What did i made wrong?