[你必须知道的.NET] 调试技巧 - DebuggerDisplayAttribute
0x01 综述
DebuggerDisplayAttribute 如名称所示 是在Debug阶段使用的。
确定类或字段在调试器变量窗口中的显示方式
MSDN地址:https://msdn.microsoft.com/zh-cn/library/system.diagnostics.debuggerdisplayattribute.aspx
0x02 效果
图1 VS2017中效果
0x03 如何使用
VS2017代码如下
using System; using System.Diagnostics; //DebuggerDisplayAttribute 在这个空间里 namespace ConsoleApp1 { [DebuggerDisplay("Name = {this." + nameof(Name) + "} Aage = {" + nameof(Age) + "} CreateTime = {CreateTime.ToString(\"yyyy-MM-dd HH:mm:ss\") }")] public class UserInfo { public string Name { get; set; } public int Age { get; set; } public DateTime CreateTime { get; set; } } }