Exemplo n.º 1
0
 private IList <CsvFileLine> ReadBody(string file)
 {
     try
     {
         return(_csvReader.ReadBody(file, new CsvFileReaderOptions()));
     }
     catch (FileNotFoundException)
     {
         return(new List <CsvFileLine>());
     }
 }