CPerformance
This class encapsulate QueryPerfomanceXXXAPI functions to mesure small time intervals. You can use this classto mesure how much time your code take. This function can mesure timeintervals near 0.1 ms , 10 times better then timeGetTime() API orGetTickCount() that have an error of 50ms.Example:Dim m_performance As CPerformanceDim i As integerSet m_performance = new CPerformancem_performance.StartCounter()‘Do somethingFor i = 1… Read More »