EPPlus 5/6/7

Features and technical overview

Async methods for load and save

Overview

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

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