private void Go()
        {
            string                   strProcessId = toolStripProcessId.Text;
            int                      nProcessId   = int.Parse(strProcessId);
            Process                  process      = Process.GetProcessById(nProcessId);
            DebugProcess             dp           = new DebugProcess(process);
            Dictionary <int, String> names        = new Dictionary <int, string>();
            ClrWaitSnapshot          wss          = new ClrWaitSnapshot(process);
            ThreadStackManager       tsm          = wss.Initialize();

            Refresh(tsm, dp, names);
        }
        private void Go()
        {
            string strProcessId = toolStripProcessId.Text;
            int nProcessId = int.Parse(strProcessId);
            Process process = Process.GetProcessById(nProcessId);
            DebugProcess dp = new DebugProcess(process);
            Dictionary<int, String> names = new Dictionary<int, string>();
            ClrWaitSnapshot wss = new ClrWaitSnapshot(process);
            ThreadStackManager tsm = wss.Initialize();

            Refresh(tsm, dp, names);
        }