ToLocaleString , , , .
: -
DateTime d = DateTime.ParseExact(sInput, "ddd MMM d HH: mm: ss UTCzzzz yyyy", CultureInfo.InvariantCulture);
a >
( ECMA , toString).
, Date Javascript - 1 1970 . , .valueOf date . Int32.Parse , TimeSpan DateTime 1 1970 . 00:00:00 UTC + 0000.
int milliseconds = Int32.Parse(inputString);
TimeSpan t = TimeSpan.FromMilliseconds(milliseconds);
DateTime base = new DateTime(1970, 1, 1, 0, 0, 0, DateTimeKind.Utc);
DateTime result = base + t;