EPPlus 5/6

Features and technical overview

Async methods for load and save

EPPlus

EPPlus 5/6 has new async methods for load and save.

        
using(var package = new ExcelPackage(new FileInfo("MyWorkbook.xlsx")))
{
    await package.SaveAsync();
}
        
        

Check out sample 03 for more details.
.NET Core , .NET Framework

.