Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

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.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7951279
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 4, 20262026-06-04T02:30:49+00:00 2026-06-04T02:30:49+00:00

I was trying to save some stuff to the Log table with timestamp so

  • 0

I was trying to save some stuff to the Log table with timestamp so I first did this:

public static string TimeStamp(
   this DateTime datetime, string timestamptFormat = "yyyyMMddHHmmssffff")
   {
     return datetime.ToString(timestamptFormat);
   }

And then I found a snippet like this:

static public string ToReverseTimestamp(this DateTime dateTime)
{
return string.Format("{0:10}", DateTime.MaxValue.Ticks - dateTime.Ticks);
}

I started wondering what the heck is reverse timestamp is useful for, and came across this article

Now my question is: if the second snippet is even correct? And how do you convert it back to “normal” timestamp or how do you get readable datetime information from it?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-04T02:30:51+00:00Added an answer on June 4, 2026 at 2:30 am

    Make sure that the DateTime is converted to universal time before conversion to avoid time-zone problems:

    public static string ToReverseTimestamp(this DateTime dateTime)
    {
        return (long.MaxValue - dateTime.ToUniversalTime().Ticks).ToString();
    }
    

    You can convert the value back to a DateTime value by parsing the string to a long, calculating MaxValue - (MaxValue - x) = x and constructing a new DateTime with DateTimeKind.Utc from x:

    public static DateTime FromReverseTimestamp(string timestamp)
    {
        return new DateTime(long.MaxValue - long.Parse(timestamp), DateTimeKind.Utc);
    }
    

    Example:

    var input = DateTime.Now;                      // {17/05/2012 16:03:17} (Local)
    var timestamp = ToReverseTimestamp(input);     // "2520650302020786038"
    var result = FromReverseTimestamp(timestamp);  // {17/05/2012 18:03:17} (Utc)
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I'm trying to save some UserControl-Infos into a List like this: List<UserControlDetails> myList; public
I'm trying to save some lookup table data out to a YAML file so
I'm trying to take an image file, do some stuff to it and save
I'm trying to save some layouts from DevExpress Grid Controls so that users can
I'm trying to save some data to A file in android, I'm using herefor
I'm trying to save some specific JSon data and store them in a simple
I am trying to save some data for a android game, but I cant
The idea: I'm just trying to save some Chinese characters to a MySQL database.
I'm trying to save myself some coding time by taking advantage of using namespace
Hi I am trying to use NSUserDefaults to save some default values in database.

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.