我正在使用CSharpScript.EvaluatyAsync<T>
方法评估脚本并传递一些C#代码。
当存在解析问题时,我可以很容易地看到错误的行数,例如一个语法错误,但是当存在运行时异常时,我得到的是AggregateException
包装我的异常(NullReferenceException
)在这种情况下,但是没有关于如何为我获取行号的线索(以下示例中的3)。
Console.WriteLine(CSharpScript.EvaluateAsync<int>(
@"string s = null;
// some comment at line 2
var upper = s.ToUpper(); // Null reference exception at line 3
// more code").Result);
编辑:
我一直在研究这个问题,发现Scripting API会创建一个没有pdb信息的程序集here line 127,因此无法知道发生异常的位置。我是对的吗?
答案 0 :(得分:1)
在某些版本的CSharpScript中,团队添加了一个解决方案:现在您可以将ScriptOptions.Default.WithEmitDebugInformation(true)
添加到EvaluateAsync
方法。
请参阅下面的测试用例,了解如何提取异常行号:
[TestMethod]
public void LineNumberInStackTrace()
{
try
{
var result = CSharpScript.EvaluateAsync<int>(
@"string s = null;
// some comment at line 2
var upper = s.ToUpper(); // Null reference exception at line 3
// more code", ScriptOptions.Default.WithEmitDebugInformation(true)).Result;
}
catch (AggregateException e)
{
if (e.InnerException is NullReferenceException inner)
{
var startIndex = inner.StackTrace.IndexOf(":line ", StringComparison.Ordinal) + 6;
var lineNumberStr = inner.StackTrace.Substring(
startIndex, inner.StackTrace.IndexOf("\r", StringComparison.Ordinal) - startIndex);
var lineNumber = Int32.Parse(lineNumberStr);
Assert.AreEqual(3, lineNumber);
return;
}
}
Assert.Fail();
}
[TestMethod]
public void LineNumberNotInStackTrace()
{
try
{
var result = CSharpScript.EvaluateAsync<int>(
@"string s = null;
// some comment at line 2
var upper = s.ToUpper(); // Null reference exception at line 3
// more code").Result;
}
catch (AggregateException e)
{
if (e.InnerException is NullReferenceException inner)
{
var startIndex = inner.StackTrace.IndexOf(":line ", StringComparison.Ordinal);
Assert.AreEqual(-1, startIndex);
return;
}
}
Assert.Fail();
}
答案 1 :(得分:0)
在这种情况下,您可能希望查看AggregateException.InnerExceptions
属性中的信息。