Skip to content

Instantly share code, notes, and snippets.

@fileformat-cells-gists
Created October 24, 2023 09:50
Show Gist options
  • Save fileformat-cells-gists/8c056fad7873fe5373230da8a4cd9034 to your computer and use it in GitHub Desktop.
Save fileformat-cells-gists/8c056fad7873fe5373230da8a4cd9034 to your computer and use it in GitHub Desktop.
Create an Empty Workbook / Spreadsheet in C#
using FileFormat.Cells;
namespace Example
{
class Program
{
static void Main(string[] args)
{
// Initialize an instance of the Workbook class.
Workbook workbook = new Workbook();
// Call the Save method to save the MS Excel Spreadsheet/Workbook 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