ObservableGroupedCollection<TKey,TValue> Constructors
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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.