Quantcast
Channel: what timestamp format is this - Stack Overflow
Browsing all 4 articles
Browse latest View live

Answer by Richard Fearn for what timestamp format is this

It's Unix time - the number of seconds since midnight UTC on 1st January 1970. You can use this site to convert the timestamp to an ordinary date and time.As for conversion in C#, this should...

View Article



Answer by Bob for what timestamp format is this

This is a Unix timestamp; number of seconds since Jan 1, 1970. You can convert like:DateTime epoch = new DateTime(1970,1,1);DateTime ts = epoch.AddSeconds(1280833200);

View Article

Answer by Stefanvds for what timestamp format is this

isnt that the datetime in ticksUnix time?edit: yes it is: http://www.epochconverter.com/You can make a DateTime by adding those seconds to a new date.DateTime d = new DateTime(1970, 1, 1, 0, 0,...

View Article

what timestamp format is this

I have a timestamp exported from a program that I'm not sure how to convert programmatically using c#I can get more examples if requiredany pointers would be appreciated1280833200 == 3 aug 2010...

View Article
Browsing all 4 articles
Browse latest View live




Latest Images