Being forced from NPOI to microsoft interop, I have to perform a task of finding a certain worksheet in workbook, and then iterate through every row of it.
In NPOI it would be simply workbook.GetSheet(sheetName);. What would be the equivalent for this in microsoft interop?
Use
workbook.Sheets[sheetName];Complete working example: