I need to output this string value (2013-05-04 13:12:20.123Z) to a valid Datetime on this format (dd/MM/yyyy HH:mm:ss).
I tried Convert.ToDateTime, DateTime.ParseExact, DateTime.Parse but its change my Hour to another one, actually I tried to understand what is happen under of hood, but I didn't!
Anyone can explain me what the compiler understand about this format? Convert.ToDateTime output the real value of this format?
Which is the best way to Parse it?