为了愉快地显示Dictionary
的内容,我这样写:
[assembly: DebuggerDisplay("{Key,nq} -> {Value,nq}", Target = typeof(KeyValuePair<,>))]
namespace test {
[DebuggerDisplay("{DebuggerDisplay,nq}")]
public class Thing {
private readonly int _num;
public string DebuggerDisplay => $"DBG: {_num}";
public Thing(int num) => _num = num;
}
public class Program {
static void Main(string[] args) {
var map = new Dictionary<string,Thing> {
["Foo"] = new Thing(1),
["Bar"] = new Thing(2),
};
}
}
}
我希望在调试器中看到以下内容:
Foo -> DBG: 1
Bar -> DBG: 2
但是我看到了:
Foo -> {test.Thing}
Bar -> {test.Thing}
值得注意的是,如果我在KeyValuePair
上展开,则会看到:
Name | Value
--------+-------
Key | "Foo"
Value | DBG: 1
因此DebuggerDisplay
确实有效。
问题是如何在字典内容的主监视列表中显示复合类型的内容?
答案 0 :(得分:2)
尽管DebuggerDisplay
的嵌套求值不起作用,但实际上它足够灵活以调用带参数的任何自定义格式方法。所以我会这样:
[assembly:DebuggerDisplay("{Key,nq} -> {MyNamespace.DebugHelper.DisplayValue(this.Value),nq}", Target = typeof(KeyValuePair<,>))]
其中调试帮助程序可以作为内部帮助程序类:
internal static class DebugHelper
{
internal static string DisplayValue(object value)
{
switch (value)
{
case Thing thing:
return thing.DebuggerDisplay; // or even better just to format it here
default:
return value.ToString();
}
}
}