PomeloFoundation / dotNETCore-Extensions

MIT License
182 stars 63 forks source link

Feature/excel stream reader #8

Closed toralux closed 7 years ago

toralux commented 7 years ago

Added ExcelStreamReader, a read-only alternative to ExcelStream, that works on large Excel-files (e.g. 40 mb file). The old ExcelStream threw OutOfMemoryException when running on Azure because of to much memory consumption... The new one will not. But the old one is great if you need to write/manipulate smaller Excel-files. I created a ExcelStreamBase-class which both implementations inherit from. Added tests.