Spire.XLS for .NET is a professional Excel .NET component. This Professional .NET Excel component is a standalone Excel .NET managed assembly and does not depend on Microsoft Office Excel.
This program received 3 awards
DOWNLOAD
Spire.XLS for .NET is a professional Excel .NET component. This Professional .NET Excel component is a standalone Excel .NET managed assembly and does not depend on Microsoft Office Excel.
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?
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);