2 using System.Collections.Generic;
3 using System.Diagnostics;
12 public Dictionary<string, Dictionary<string, double>>
HookElapsedTime =
new Dictionary<string, Dictionary<string, double>>();
18 Process proc = Process.GetCurrentProcess();
19 float memory = MathF.Round(proc.PrivateMemorySize64 / (1024 * 1024), 2);
33 HookElapsedTime[eventName][hookName] = (double)ticks / Stopwatch.Frequency;