我有一个控制器的异常处理属性,它为程序中的每个异常写入错误日志。我在服务器上部署了.pdb文件,并且下面的代码是为行号编写的:
// 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();
我仍然将行号设为0。
我有两个问题: