The WinRT DataPackage::SetStorageItems
API function accepts a parameter of type IIterable<IStorageItem^>^
. I have one StorageItem^
, not a collection.
I'm a little confused about how to create an IIterable collection from it, since I cannot find the WinRT collection class that implements the interface. I understand that I can create my own class using IIterable as a base, but I assume that there are existing classes that I just don't see.
What am I missing here?
I think this is obvious, but: C ++, VS11, Win8, Metro.
source share