I'm attempting to convert the following string to DateTimeOffset
20201106 13:09:14.510952 +0000
I'm using the following format to attempt to convert it
DateTimeOffset dtofResult = new DateTimeOffset();
DateTimeOffset.TryParseExact("20201106 13:09:14.510952 +0000", @"yyyyMMdd HH\:mm\:ss\FFFFFF zzz\s", CultureInfo.InvariantCulture, DateTimeStyles.None, out dtofResult);
This keeps returning me the default value and not the converted string.
I'm not sure if this is an issue with the format or possibly an issue with culture variants?
Would appreciate any help on this issue!