Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

As the title says really.

There is this example code, but then it starts talking about millisecond / nanosecond problems.

http://blogs.msdn.com/brada/archive/2004/03/20/93332.aspx

Edit: This is what I've got so far:

public Double CreatedEpoch
{
  get
  {
    DateTime epoch = new DateTime(1970, 1, 1, 0, 0, 0, 0).ToLocalTime();
    TimeSpan span = (this.Created.ToLocalTime() - epoch);
    return span.TotalSeconds;
  }
  set
  {
    DateTime epoch = new DateTime(1970, 1, 1, 0, 0, 0, 0).ToLocalTime();
    this.Created = epoch.AddSeconds(value);
  }
}
share|improve this question
2  
Just got a -1 vote here, on what grounds? – Mark Ingram Oct 10 '12 at 15:20
Epoch & Unix Timestamp Conversion Tools epochconverter.com ;) – Soren Jan 8 at 9:47

6 Answers

up vote 141 down vote accepted

Here's what you need:

public static DateTime UnixTimeStampToDateTime( double unixTimeStamp )
{
    // Unix timestamp is seconds past epoch
    System.DateTime dtDateTime = new DateTime(1970,1,1,0,0,0,0);
    dtDateTime = dtDateTime.AddSeconds( unixTimeStamp ).ToLocalTime();
    return dtDateTime;
}

Or, for Java (which is different):

public static DateTime JavaTimeStampToDateTime(double javaTimeStamp)
{
    // Java timestamp is millisecods past epoch
    System.DateTime dtDateTime = new DateTime(1970,1,1,0,0,0,0);
    dtDateTime = dtDateTime.AddSeconds(Math.Round(javaTimeStamp / 1000)).ToLocalTime();
    return dtDateTime;
}
share|improve this answer
1  
AddSeconds doesn't seem to behave very well for values lesser than 0.1 milliseconds (iirc) – Luk Nov 3 '08 at 17:32
@Luk yes, a number of methods of DateTime/TimeSpan are inexplicably sub-millisecond impaired... – romkyns Apr 15 '11 at 20:36
1  
Time in Windows is handled by HAL and only close-to-accurate within 1ms to 15ms. More info is available in Windows Internals around page 112, if anyone is interested. – Jim Schubert Apr 13 '12 at 14:59
11  
epoch is UTC, so you actually need: DateTime epoch = new DateTime(1970, 1, 1, 0, 0, 0, 0, DateTimeKind.Utc); in C#, otherwise you'll get local time. – Malcolm Jul 7 '12 at 18:59
1  
This answer risks truncating the seconds... A double is a floating number. The argument should be int/long/etc. – ccook Mar 4 at 14:59

DateTime to UNIX timestamp:

public static double DateTimeToUnixTimestamp(DateTime dateTime)
{
    return (dateTime - new DateTime(1970, 1, 1).ToLocalTime()).TotalSeconds;
}
share|improve this answer

"UTC does not change with a change of seasons, but local time or civil time may change if a time zone jurisdiction observes daylight saving time (summer time). For example, UTC is 5 hours ahead of (that is, later in the day than) local time on the east coast of the United States during winter, but 4 hours ahead while daylight saving is observed there."

So this is my code:

TimeSpan span = (DateTime.UtcNow - new DateTime(1970, 1, 1, 0, 0, 0, 0,DateTimeKind.Utc));
double unixTime = span.TotalSeconds;
share|improve this answer
1  
I wonder why this got a downvote? It seems to be similar to what Jon Skeet advocates in his answer here - stackoverflow.com/a/7983514/685760 – Mr Moose Jun 1 '12 at 3:36
This one worked for me whereas Dmitry's version was one day off. – tremby Aug 20 '12 at 17:50
but this returns a double, I guess one needs to cast to long? – knocte May 6 at 6:25

A Unix tick is 1 second (if I remember well), a .Net tick is 100 nanoseconds.

If you've been encountering problems with nanoseconds, you might want to try using AddTick(10000000 * value).

share|improve this answer
Unix is seconds past epoch - which is 1/1/70. – ScottCher Oct 30 '08 at 14:44

I found the right answer just by using comparing the conversion to 1/1/1970 w/o the local time adjustment;

DateTime date = new DateTime(2011, 4, 1, 12, 0, 0, 0);
DateTime epoch = new DateTime(1970, 1, 1, 0, 0, 0, 0);
TimeSpan span = (date - epoch);
double unixTime =span.TotalSeconds;
share|improve this answer
I guess Dump() is a LinqPad specific thing – André Pena Aug 12 '11 at 20:35
@AndréPena Cursious reading your comment. The only thing I found was servicestack.net/mythz_blog/?p=202 which seems to come from code.google.com/p/servicestack/source/browse/trunk/Common/… – kenny Sep 22 '11 at 11:05
you are correct @AndréPena I corrected the code snippet – n8CodeGuru Oct 18 '12 at 16:06

To supplement ScottCher's answer, I recently found myself in the annoying scenario of having both seconds and milliseconds UNIX timestamps arbitrarily mixed together in an input data set. The following code seems to handle this well:

static readonly DateTime UnixEpoch = new DateTime(1970, 1, 1, 0, 0, 0, 0, DateTimeKind.Utc);
static readonly double MaxUnixSeconds = (DateTime.MaxValue - UnixEpoch).TotalSeconds;

public static DateTime UnixTimeStampToDateTime(double unixTimeStamp)
{
   return unixTimeStamp > MaxUnixSeconds
      ? UnixEpoch.AddMilliseconds(unixTimeStamp)
      : UnixEpoch.AddSeconds(unixTimeStamp);
}
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.