No specific info about version 5.1. Please visit the main page of Spire.XLS for .NET on Software Informer.

This program received 3 awards
  DOWNLOAD  
Specifications
Developer:
e-iceblue
Comments
Guest 10 years ago

Thanks for sharing, It’s very informative and to the point. I came across another API by the name of Aspose.Cells which is also considered good with CSV & XLS/XLSX reading and conversion. Could you please share some code for this API and also you thoughts?

Rave 7 years ago

if (File.Exists(Util.XLSXFileName)) { File.Delete(Util.XLSXFileName); } //Save as xlsx using Spire Workbook workbook = new Workbook(); workbook.LoadFromFile(Util.CSVFileName, ",", 1, 1); Worksheet sheet = workbook.Worksheets[0]; sheet.Name = "csv to excel"; workbook.SaveToFile(Util.XLSXFileName, ExcelVersion.Version2010);

Related stories