public void make(string dataSheet, string outFIleName) { ExcelParser excel_ = new ExcelParser(excelFilePath_, dataSheet); excelData_ = excel_.table(); this.writeFile(this.parse(), outFIleName); }
//데이터 시트 만들기 public void Make(string dataSheet, string outFileName) { ExcelParser excel = new ExcelParser(excelFilePath, dataSheet); excelData = excel.Table(); this.WriteFile(this.Parse(), outFileName); }
public MakePacket(string filePath, string formSheet) { ExcelParser excel = new ExcelParser(filePath, formSheet); this.initialize(excel.table()); excelFilePath_ = filePath; }
//패킷 만드는 public MakePacket(string filePath, string formSheet) { ExcelParser excelPS = new ExcelParser(filePath, formSheet); this.Init(excelPS.Table()); excelFilePath = filePath; }