I'm trying to get Stopwatch.GetTimestamp()
equivalent in NodeJS, but I only managed this:
Javascript:
(Date.now()*10000)+621355968000000000; //returns 637414085816080000
C#
Stopwatch.GetTimestamp() // returns 6618676876650
Note that the results are different