[code] public static void ProcessRows(string path, string sheetName) { var workbook = OpenWorkbook(path); var sheet = workbook.GetSheet(sheetName); if (sheet == null) throw new Exception($"Sheet '{sheetName}' not found."); for (int rowIndex = 0; rowIndex