Enhanced C#
Language of your choice: library documentation
Properties | Public Member Functions | List of all members
Loyc.Collections.CollectionDebugView< T > Class Template Reference

This helper class gives a nice view of a custom collection within the debugger. More...


Source file:

Remarks

This helper class gives a nice view of a custom collection within the debugger.

For ISource or IListSource collections, use ListSourceDebugView instead.

Use the following custom attributes on your class that implements ICollection(of T) or IList(of T):

[DebuggerTypeProxy(typeof(CollectionDebugView<>)), DebuggerDisplay("Count = {Count}")]

See the following link for more information: http://www.codeproject.com/Articles/28405/Make-the-debugger-show-the-contents-of-your-custom

Properties

T[] Items [get]
 

Public Member Functions

 CollectionDebugView (ICollection< T > collection)