Best way to parse time = "2021-04-20T00:09:14.7724640+02:00" to valid time. I need seconds as well however once
var h = DateTime.ParseExact(time.Substring(14,5), "hh:mm", CultureInfo.InvariantCulture);
this returns only hour and minute but I need seconds too, however there is 09:14.7724640+02:00 and if I tried hh:mm:ss the "." throws an "Invalid DateTimet "exception