Skip to content

Instantly share code, notes, and snippets.

@conholdate-gists
Created June 28, 2024 22:21
Show Gist options
  • Save conholdate-gists/5779f2fe537590765b4a280e41eab857 to your computer and use it in GitHub Desktop.
Save conholdate-gists/5779f2fe537590765b4a280e41eab857 to your computer and use it in GitHub Desktop.
Convert TXT to Excel Worksheet XLSX XLS in C# .NET
// Create TxtLoadOptions class object
Aspose.Cells.TxtLoadOptions options = new Aspose.Cells.TxtLoadOptions();
// Load the TXT file
Workbook wb = new Workbook("input.txt", options);
// Save as XLSX
wb.Save("Excel.xlsx", Aspose.Cells.SaveFormat.Xlsx);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment