C# version of Javascript Date.getTime()

前端 未结 8 1280
予麋鹿
予麋鹿 2021-02-01 21:11

What is the best way in c# to get the same result of javascript date.gettime() call?

The getTime() method returns the number of milliseconds since midnigh

8条回答
  •  隐瞒了意图╮
    2021-02-01 21:29

    Since JavaScript time is with respect to UTC, I think you will need something like this:

    var st = new DateTime(1970, 1, 1, 0, 0, 0, DateTimeKind.Utc);
    var t  = (DateTime.Now.ToUniversalTime() - st);
    // t.TotalMilliseconds
    

    Now you can use the TotalMilliseconds property of the Timespan.

提交回复
热议问题