단일 Excel 셀 값을 읽는 방법 행 2와 열 10에서 읽어야 할 값이 있는 시트 1이 있는 엑셀 파일을 가지고 있습니다.여기 제 코드가 있습니다. Excel.Workbook excelWorkbook = excelApp.Workbooks.Open(workbookPath, 0, false, 5, "", "", false, Excel.XlPlatform.xlWindows, "", true, false, 0, true, false, false); Excel.Sheets excelSheets = excelWorkbook.Worksheets; string currentSheet = "Sheet1"; Excel.Worksheet excelWorksheet = (Excel.Worksheet)excelSheets.g..