Kleine änderungen durchgeführt

This commit is contained in:
Husky
2019-07-22 20:12:35 +02:00
parent 7ec76a5edc
commit 44141e37e5
3 changed files with 19 additions and 7 deletions

View File

@@ -19,7 +19,7 @@ namespace CSVParser
{
get
{
if (!File.Exists(csvFile)) return null;
if (!File.Exists(csvFile)) throw new FileNotFoundException(csvFile);
return File.ReadAllLines(csvFile);
}
}