I have created an excel file (excel 2010) and set some cell names. I would like to get this name in my code with epplus lib. Worksheet has a special property for it Names but this collection is empty all the time.
var currentCell = worksheet.Cells[1, 1];
var name = worksheet.Names.SingleOrDefault(e => e.FullAddressAbsolute == currentCell.FullAddressAbsolute);
I just wonder is it issue in excel, or i need use other way to get it.