Skip to content

Latest commit

 

History

History
34 lines (23 loc) · 1.22 KB

imapview_2_split_1291373119.md

File metadata and controls

34 lines (23 loc) · 1.22 KB
-api-id -api-type
M:Windows.Foundation.Collections.IMapView`2.Split(Windows.Foundation.Collections.IMapView{`0,`1}@,Windows.Foundation.Collections.IMapView{`0,`1}@)
winrt method

Windows.Foundation.Collections.IMapView<K, V>.Split

-description

Splits the map view into two views.

-parameters

-param first

One half of the original map.

-param second

The second half of the original map.

-remarks

When programming with .NET, this interface is hidden and developers should use the System.Collections.Generic.IReadOnlyDictionary<TKey,TValue> interface.

The two views that result from the split operation may not contain the same number of items. The two views do not overlap.

If the IMapView<K, V> instance cannot be split, then both the first and second parameters are null when the method returns.

-examples

-see-also

IMapView<K, V>