Created
November 23, 2024 05:41
-
-
Save documentprocessing/d783ac40962989a4b6a4d72f673d32be to your computer and use it in GitHub Desktop.
Create Excel XLSX using FileFormat.Cells for .NET
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 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