Enhanced C#
Language of your choice: library documentation
Properties | Public Member Functions | List of all members
Loyc.Collections.ListSourceDebugView< 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.

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

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

See the following link for more information: http://www.codeproject.com/KB/dotnet/DebugIList.aspx

Properties

T[] Items [get]
 

Public Member Functions

 ListSourceDebugView (IReadOnlyCollection< T > collection)