public void ShowVariableInfo()
        {
            InfoForm infoForm = new InfoForm();

            lock (_objectLock)
            {
                infoForm.SetText(
                    "Variable Info",
                    "Variable Info",
                    String.Join("\t",
                                WatchVariableWrapper.GetVarInfoLabels()) +
                    "\r\n" +
                    String.Join("\r\n",
                                GetCurrentVarInfo().ConvertAll(
                                    infoList => String.Join("\t", infoList))));
            }
            infoForm.Show();
        }