Syncfusion geupdated

This commit is contained in:
Husky
2019-10-10 16:43:18 +02:00
parent 30f0956d21
commit c2bbeb7e50
11 changed files with 138 additions and 93 deletions

View File

@@ -5,6 +5,7 @@ using System.Linq;
using System.Text;
using System.Threading.Tasks;
using SanShared;
using SanShared.Exceptions;
namespace CSVParser
{
@@ -36,7 +37,7 @@ namespace CSVParser
if (!DateTime.TryParse(datum + " " + uhrzeit, out zeit))
throw new Exception("Konnte die datum uhrzeit nicht konventieren");
throw new CSVImportException("Konnte die datum uhrzeit nicht konventieren");
double.TryParse(parts[3].Replace("\"","").Replace('.', ','), out temperatur);
int.TryParse(parts[4].Replace("\"",""), out geschwindigkeit);