I have this DateTime as string: 2015-08-21T10:51:25.9495986+02:00
How can I parse this string date into a DateTime object?
I usually do this:
CultureInfo provider = CultureInfo.InvariantCulture;
DateTime _date;
DateTime.TryParseExact("2015-05-12T12:00:00", "yyyy-MM-ddTHH:mm:ss", provider, DateTimeStyles.None, out _date))
But now the end of the DateTime contains +02:00. Never faced this format and I believe this has to do something with the Time Region right?