我对visual studio有一个小问题。 我有一个抛出CustomException
的方法如果我在try / catch中包装调用此方法的代码,我可以在调试器中看到异常详细信息
如果我删除了try / catch,我可以看到"错误"属性有Count = 4但我看不到错误......
这是预期还是错误?
我正在使用vs2015 enterprise和.NET 4.5.2
您可以轻松复制它:
1)使用此
using System;
using System.Collections.Generic;
using System.Linq;
namespace ClassLibrary1
{
public static class Class1
{
public static void DoSomethingThatThrowsException()
{
throw new MyException(Enumerable.Range(1, 4).Select(e => new MyError() { Message = "error " + e.ToString() }).ToList());
}
}
public class MyException : Exception
{
public IEnumerable<MyError> errors { get; set; }
public MyException(IEnumerable<MyError> theErrors) { errors = theErrors; }
}
public class MyError { public string Message { get; set; } }
}
2)用以下方法创建一个控制台应用程序:
using ClassLibrary1;
namespace ConsoleApplicationException
{
class Program
{
static void Main(string[] args)
{
try
{
Class1.DoSomethingThatThrowsException();
}
catch (MyException ex)
{
//Here I can expand ex.errors;
}
//Here I can see that Count=4 but I cannot see the errors...
Class1.DoSomethingThatThrowsException();
}
}
}
PS
我可以使用&#34; DebuggerDisplay&#34;来解决我的问题。属性,我只是想知道为什么Visual Studio没有按预期工作
[DebuggerDisplay("FullDetails = {FullDetails}")]
public class MyException : Exception
{
public IEnumerable<MyError> errors { get; set; }
public MyException(IEnumerable<MyError> theErrors) { errors = theErrors; }
public string FullDetails { get { return string.Join(",", errors.Select(e => e.Message)); } }
}
更新
如果我将List更改为Array,我有同样的问题,但如果我将其更改为Dictionary,我可以看到第一条记录!!!
答案 0 :(得分:0)
我认为由于某种原因,编译器在抛出它时无法评估LINQ查询。尝试创建它,然后扔掉它。它允许您在抛出之前计算LINQ查询:
public static void DoSomethingThatThrowsException()
{
var ex = new MyException(Enumerable.Range(1, 4)
.Select(e => new MyError()
{
Message = "error " + e.ToString()
})
.ToList());
throw ex;
}
答案 1 :(得分:0)
这在Visual Studio 2017中运行良好......