Excel 파일 <-> DataTable
using System;using System.Data;using Excel = Microsoft.Office.Interop.Excel;public partial class CustomScript{ public void Execute_Code() { string filePath = @"C:\Users\WW\Documents\rpa_test\Sample1.xlsx"; string sheetName = "Sheet1"; // Excel Application 생성 Excel.Application excelApp = new Excel.Application(); Excel.Workbook workbook = null; Excel..
Comment