Interface IGrouping<TObject, TGroupKey>
- Namespace
- DynamicData.List
- Assembly
- DynamicData.dll
Represents a group which provides an update after any value within the group changes.
public interface IGrouping<out TObject, out TGroupKey>
Type Parameters
TObject
The type of the object.
TGroupKey
The type of the group key.
Properties
Count
Gets the count.
int Count { get; }
Property Value
Items
Gets the items.
IEnumerable<out TObject> Items { get; }
Property Value
- IEnumerable<TObject>
Key
Gets the group key.
TGroupKey Key { get; }
Property Value
- TGroupKey