I am new to epplus, and i\'m trying to read some values from an excel table.
This is what I have so far:
var fileInfo = new FileInfo(filename);
using(var e
Im not sure of epplus, but I thought I would make a quick suggestion of using LinqToExcel
var excel = new ExcelQueryFactory(excel);
var info = excel.Worksheet("Sheet1")
.Select(z=> new
{
Name = row["Name"].Cast(),
Age = row["Age"].Cast(),
}).ToList();
you can get it from NuGet
Install-Package LinqToExcel