我写了一个方法Assert():
[System.Diagnostics.Conditional("DEBUG")]
internal static void Assert(bool condition)
{
if (!condition)
{
var message =
"Line:" + (new System.Diagnostics.StackFrame(1)).GetFileLineNumber() + "\r\n" +
"Column:" + (new System.Diagnostics.StackFrame(1)).GetFileColumnNumber() + "\r\n" +
"Where:" + (new System.Diagnostics.StackFrame(1)).GetMethod().Name;
Log("ASSERTION", message);
}
}
为什么触发时我的行和列都等于0?它应该是调用Debug.Assert(false)的地方。
此致
答案 0 :(得分:8)
您需要使用StackFrame(int, bool)
重载并指定true
作为第二个参数。看起来只是StackFrame(int)
重载不捕获源信息。
示例代码:
using System.Diagnostics;
...
[Conditional("DEBUG")]
internal static void Assert(bool condition)
{
if (!condition)
{
StackFrame frame = new StackFrame(1, true);
var message = string.Format("Line: {0}\r\nColumn: {1}\r\nWhere:{2}",
frame.GetFileLineNumber(),
frame.GetFileColumnNumber(),
frame.GetMethod().Name);
Log("ASSERTION", message);
}
}
(顺便看一下你的评论,你将需要PDB文件。这就是存储调试信息的地方。我不清楚这是否适用于SQLCLR触发器,说实话。上面的内容适用于我的控制台应用程序,但这就是我所能说的......)