Let's say, I have a string like this - "2014-09-30T20:38:18.280", how can I parse this into a DateTime field of DateTimeKind.Utc.
When I perform DateTime.Parse("2014-09-30T20:38:18.280"), it returns the date time in DateTimeKind.Unspecified. When I try to call ToUniversalTime() on that, it shifts the time adjusting UTC offset.
I basically want "2014-09-30T20:38:18.280" itself represented in UTC