//TO DO: check for detectedDataTypes = empty (= dataset matches all qualifiers of a type)
//check for detectedDataTypes = empty (possible when DataIdentificator.Identify(MustMatchAllQualifer = true) and no dataset matches all qualifiers of a type)
if(detectedDataTypes.Count==0)
{
MessageBox.Show($"DataIdentificator.Identify() konnte die Datenart nicht bestimmen!{Environment.NewLine}Versuchen Sie den Import mit einer dezidierten Importerfunktion.");
fields=csvParser.ReadFields();// Read current line fields, pointer moves to the next line.
if(fields[0]=="")break;// Am Ende hängt eine leere Zeile, die im Parser einen Fehler auslösen würde.
//TO DO: vor der foreach "Account" bevorzugt behandeln (Sonderfall bei LSAG: Liste deduplizieren, und als erstes importieren, da sonst keine Contacts importiert werden können).