如何在Visual Studio加载项中获取中断/异常的当前行号?

时间:2013-01-09 02:31:17

标签: c# visual-studio visual-studio-2012 visual-studio-debugging visual-studio-addins

我正在搞乱Visual Studio加载项API,试图看看我想做的事情是否可行。我现在正在做的一件事就是:

    public void Exec(string commandName, vsCommandExecOption executeOption, ref object varIn, ref object varOut, ref bool handled)
    {
        _applicationObject.Events.DebuggerEvents.OnExceptionThrown += DebuggerEvents_OnExceptionThrown;
        handled = false;
        if(executeOption == vsCommandExecOption.vsCommandExecOptionDoDefault)
        {
            if(commandName == "MyAddin1.Connect.MyAddin1")
            {
                handled = true;
                return;
            }
        }
    }

    void DebuggerEvents_OnExceptionThrown(string ExceptionType, string Name, int Code, string Description, ref dbgExceptionAction ExceptionAction)
    {
        //how to get line number here?
    }

理想情况下,我希望能够在被调试的程序抛出异常时获取当前函数和行号。这可能吗?

1 个答案:

答案 0 :(得分:0)

这些信息显然已从调试信息中解除。因此,它并不总是可用,我想这就是为什么StackFrames对象在这种情况下不实现它是有道理的。

无论如何,要获得包含文件和行号信息(以及IL偏移等)的堆栈跟踪,您必须在调试应用程序的上下文中动态执行代码。您可以使用GetExpression执行此操作。

总结:

var tmp = dte.Debugger.GetExpression(
    "new System.Diagnostics.StackTrace(true).ToString();", true);

这将返回一个包含堆栈跟踪的字符串,包括文件和行号...但是,您必须解析此返回的字符串以实际使用它,并且我认为这比{{3}慢得多}}