I was just checking how to build a managed version of ICE for .NET, and looked through the places in the code that were conditional on the MANAGED macro.
The managed code in Time.cs uses DateTime.Now.Ticks, whereas the unmanaged code uses QueryPeformanceCounter.
Just wanted to point out that System.Diagnostics.Stopwatch would be the managed equivalent to QueryPeformanceCounter:
Stopwatch Class (System.Diagnostics)
Karl

Reply With Quote