Windows.Foundation.Collection Types, Part 3: Maps and Property Sets
0 comments
/
posted by
Silverlight Show
on
Jul 29, 2013 (6 days ago)
Read original post at Kraig Brockschmidt's Blog A map (IMap<K, V>) and its read-only map view companion (IMapView<K, V>) are additional derivations of the basic iterator. A map is composed of key-value pairs, where the keys and values can both be arbitrary types. [Footenote: Each pair is described by the IKeyValuePair interface, but you don’t encounter that construct explicitly in JavaScript. Also ...