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 required
any pointers would be appreciated
1280833200 == 3 aug 2010 12:00
thanks,
Mark
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
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 work: