I work a lot with ObservableCollection. I looked around, but it seems I can not find the ObservableCollection Debug visualizer.
Is there such a thing?
Here's a commercial tool for $ 50 ... Mole 2010
You can override .ToString()for the class you are wrapping with ObservableCollection.
.ToString()
ObservableCollection
Otherwise, you can customize what the visualizer shows you using DebuggerDisplayAttribute.
[DebuggerDisplay("Employee ( {FullName} )")] public class Employee { ... }
, . .
. MSDN: , .NET Code a Breeze
. MSDN: -
. MSDN: ?
. : Visualizer VS.NET
. : 10