I tried How can I convert a DateTime to the number of seconds since 1970? with
DateTime origin = new DateTime(1970, 1, 1, 0, 0, 0, 0);
DateTime date = DateTime.Parse(@"28/05/12 01:30");
TimeSpan diff = date.ToUniversalTime() - origin;
Console.WriteLine( (Math.Floor(diff.TotalSeconds)).ToString());
Output = 1338161400
It is wrong compared to http://www.mbari.org/staff/rich/utccalc.htm 1338168600
Why ?