internal VisualStudioEnvironment(DTE dte)
        {
            if (dte == null)
            {
                throw new ArgumentNullException("dte");
            }

            r_dte       = dte;
            r_navhelper = new VisualStudioNavHelper();
        }
 public void GoToURL(string url)
 {
     VisualStudioNavHelper.GoToUrl(r_dte, url);
 }
 public void GoToLine(string file, int line)
 {
     VisualStudioNavHelper.GoToLine(r_dte, file, line);
 }
 public void GoToAddress(string function, int offset)
 {
     VisualStudioNavHelper.GoToAddress(r_dte, function, offset);
 }