Is there a place that I could look at the .NET Stopwatch code and see what it's doing? I'm trying to match up some C++ code to normalize timestamp that .NET stopwatch provides with QueryPerformance call in C++. (I need to have really good precision if possible, so I need to understand what's actually going on in the .NET Stopwatch calls).
Is the code visible / open somewhere that I can read it online. Is decompiling mscorlib an option? I'm kind of keeping this as a last resort.
Here's what .NET 3.5 does
The date on the source code is late 2002, so probably most versions of .NET use the same code.