如何获得引发异常的行号?

如何获得引发异常的行号?,第1张

如何获得引发异常的行号

如果您需要的行号不仅仅是从Exception.StackTrace获得的格式化堆栈跟踪,则可以使用StackTrace类:

try{    throw new Exception();}catch (Exception ex){    // Get stack trace for the exception with source file information    var st = new StackTrace(ex, true);    // Get the top stack frame    var frame = st.Getframe(0);    // Get the line number from the stack frame    var line = frame.GetFileLineNumber();}

请注意,这仅在程序集有pdb文件可用时才有效。



欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/5440795.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-12-11
下一篇 2022-12-11

发表评论

登录后才能评论

评论列表(0条)

保存