I'm trying to convert the following string to datetime. I've searched high and low and can't find the exact formats string and I don't want to resort to parsing it manually.
var dateString = "20110828T134108+0100";
All my attempts fail with FormatException.
DateTime.ParseExact(dateString, "yyyyMMdd'T'hhmmss",null)but with no luck