Im working with Google bookmakrs and it returns 16-digit timestamp that i dont seem to be able to recognize in C# to turn into real dates, any ideas?
how to turn this timestamp: 1278276905502403 to something that makes sense in C#?
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.
That looks like UNIX time in microseconds. That is, the number of microseconds since 1970.01.01 00:00:00.
Could try something like:
(Probably a better way to do this, but I don’t know C#.)
Python instead: