I receive DateTime in this format => yyyyMMddHHmmss e.g. 20160214204032
Due to its somewhat unique format, I can't just use Convert.ToDateTime -- I tried, it didn't work.
It's easy enough to create a helper method that would parse the components of this date e.g
var year = myString.Substring(0,4);
but I'm concerned that this may have poor performance.
Can anyone think of a better way to convert a string in this format to DateTime?