/// <summary> /// ファイルからCsvTableを読み込む。 /// ファイルが存在しないときは作成する。 /// </summary> /// <param name="filePath"></param> /// <returns></returns> private CsvTable CsvReadOrCreate(string filePath) { var csv = new CsvTable() { Encode = Encode }; try { csv.ReadOrCreate(filePath); } catch (Exception ex) { TheApp.app.MessageShow(ex); } return(csv); }