Skip to main content

Posts

Showing posts with the label C# Word

Read and Write Excel Files without MS Office in C#

  Read or write Excel files are common tasks for developers in office document development. In this article, I am going to share a simple approach to read and write Excel files in C# by using Free Spire.XLS for .NET API. Microsoft Office is not needed Free Spire.XLS for .NET  is a free and independent API for creating, reading, writing, converting and printing Excel files in both XLS (Excel 97-2003) and XLSX (Excel 2007 and above) formats. It has no dependency on Microsoft Office, in other words, you can use it to read and write Excel files without installing Microsoft Office in your system. Get Free Spire.XLS for .NET You can either download Free Spire.XLS DLLs from  this website  or install Free Spire.XLS using NuGet Package Manager through the following steps: In your project’s Solution Explorer, right-click the project or “Dependencies” and select “Manage NuGet Packages”. Click “Browse” tab and search Free Spire.XLS. Install Free Spire.XLS. Write Excel Files You ...