Get time in milliseconds using C#

后端 未结 8 1697
你的背包
你的背包 2021-01-30 09:56

I\'m making a program in which I need to get the time in milliseconds. By time, I mean a number that is never equal to itself, and is always 1000 numbers bigger than it was a se

8条回答
  •  轮回少年
    2021-01-30 10:24

    The DateTime.Ticks property gets the number of ticks that represent the date and time.

    10,000 Ticks is a millisecond (10,000,000 ticks per second).

提交回复
热议问题