﻿IronXL  - The Excel Library for .NET 
=============================================================
Quickstart:  https://ironsoftware.com/csharp/excel/

Installation for .NET Framework 4.6.2+ 
=============================================================
- Include IronXL.dll in net45 folder into your project
- Add Assembly references to:
	* System.Configuration


Installation for .NET Standard, .NET Core 2.0+, .NET 5, .NET 6, .NET 7 & .NET 8
=============================================================
- Include IronXL.dll in netstandard2.0 folder into your project


Compatibility
=============================================================
Supports applications and websites developed in 
- .NET FrameWork 4.6.2 (and above) for Windows and Azure
- .NET Core 2, 3 (and above) for Windows, Linux, macOS and Azure
- .NET 5
- .NET 6
- .NET 7
- .NET 8

C# Code Example
=============================================================
```
using IronXL;

//Create new Excel WorkBook document. 
//The default file format is XLSX, but we can override that for legacy support
WorkBook xlsWorkbook = WorkBook.Create(ExcelFileFormat.XLS);
xlsWorkbook.Metadata.Author = "IronXL";

//Add a blank WorkSheet
WorkSheet xlsSheet = xlsWorkbook.CreateWorkSheet("new_sheet");
//Add data and styles to the new worksheet

xlsSheet["A1"].Value = "Hello World";
xlsSheet["A2"].Style.BottomBorder.SetColor("#ff6600");
xlsSheet["A2"].Style.BottomBorder.Type = IronXL.Styles.BorderType.Double;

//Save the excel file
xlsWorkbook.SaveAs("NewExcelFile.xls");
```

Documentation
=============================================================
- Code Samples				:	https://ironsoftware.com/csharp/excel/examples/read-excel/
- MSDN Class Reference		:	https://ironsoftware.com/csharp/excel/object-reference/
- Tutorials					:	https://ironsoftware.com/csharp/excel/tutorials/how-to-read-excel-file-csharp/
- Support					:	support@ironsoftware.com
