I\'ve got a class which inherits from a List. It works well and as expected in all respects except one: when I add the [DebuggerDisplay]<
List
[DebuggerDisplay]<
Use the DebuggerDisplay attribute like so:
[DebuggerDisplay("ID:{ID},Customers:{Customers==null?(int?)null:Customers.Count}")]` class Project { int ID{get;set;} IList Customers{get;set;} }
Some more info here.