I see 2 things;
- You should use
d
specifier instead of dd
specifier since your single digit day number does not have a leading zero.
- There is no
zzzz
as a custom format specifier. You should use zzz
specifier instead.
DateTime.ParseExact("Wed, 6 Mar 2019 14:39:49 +0300",
new string[] { "ddd, d MMM yyyy HH:mm:ss zzz" },
CultureInfo.InvariantCulture, DateTimeStyles.AdjustToUniversal);
But honestly, if your strings have a UTC Offset value, I would suggest parse it to DateTimeOffset
instead since a DateTime
instance does not have offset part and using zzz
specifiers is not recomended as stated on MSDN.
With DateTime
values, the "zzz" custom format specifier represents the
signed offset of the local operating system's time zone from UTC,
measured in hours and minutes. It does not reflect the value of an
instance's DateTime.Kind
property. For this reason, the "zzz" format
specifier is not recommended for use with DateTime values.
To parse DateTimeOffset
,
DateTimeOffset.ParseExact("Wed, 6 Mar 2019 14:39:49 +0300",
new string[] { "ddd, d MMM yyyy HH:mm:ss zzz" },
CultureInfo.InvariantCulture, DateTimeStyles.AdjustToUniversal);
Now you can use it's .DateTime
and/or .Offset
properties separately if you want.