Edit

Share via


ObservableGroupedCollection<TKey,TValue> Constructors

Definition

Overloads

ObservableGroupedCollection<TKey,TValue>()

Initializes a new instance of the ObservableGroupedCollection<TKey,TValue> class.

ObservableGroupedCollection<TKey,TValue>(IEnumerable<IGrouping<TKey,TValue>>)

Initializes a new instance of the ObservableGroupedCollection<TKey,TValue> class.

ObservableGroupedCollection<TKey,TValue>()

Initializes a new instance of the ObservableGroupedCollection<TKey,TValue> class.

public ObservableGroupedCollection ();
Public Sub New ()

Applies to

ObservableGroupedCollection<TKey,TValue>(IEnumerable<IGrouping<TKey,TValue>>)

Initializes a new instance of the ObservableGroupedCollection<TKey,TValue> class.

public ObservableGroupedCollection (System.Collections.Generic.IEnumerable<System.Linq.IGrouping<TKey,TValue>> collection);
new CommunityToolkit.Common.Collections.ObservableGroupedCollection<'Key, 'Value> : seq<System.Linq.IGrouping<'Key, 'Value>> -> CommunityToolkit.Common.Collections.ObservableGroupedCollection<'Key, 'Value>
Public Sub New (collection As IEnumerable(Of IGrouping(Of TKey, TValue)))

Parameters

collection
IEnumerable<IGrouping<TKey,TValue>>

The initial data to add in the grouped collection.

Applies to