Hallo-
Die Implementation von TryIso8601ToDate(..) ist bei 10.0 Seattle:
Delphi-Quellcode:
function TryISO8601ToDate(const AISODate: string; out Value: TDateTime; AReturnUTC: Boolean = True): Boolean;
begin
Result := False;
try
Value := ISO8601ToDate(AISODate, AReturnUTC);
Result := True
except
end;
end;
Mich nervt nicht nur die
Exception im Debugger, sondern auch dass unsere Anwendungen alle Exceptions loggen.
Meine Frage: Ist das in einer aktuelleren Delphi-Version immer noch so?