Skip to content

Instantly share code, notes, and snippets.

@documentprocessing
Created November 23, 2024 05:41
Show Gist options
  • Save documentprocessing/d783ac40962989a4b6a4d72f673d32be to your computer and use it in GitHub Desktop.
Save documentprocessing/d783ac40962989a4b6a4d72f673d32be to your computer and use it in GitHub Desktop.
Create Excel XLSX using FileFormat.Cells for .NET
// Create an object of the Workbook class.
Workbook workbook = new Workbook();
// Call the Save method to save the Excel file onto the disk.
workbook.Save("/spreadsheet.xlsx");
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment