Hi,
I need to convert some C# code into C++. It starts with:
Dictionary<string, ListViewItem> mItems = new Dictionary<string, ListViewItem>();
I can't find a full example in the C++ Visual Studio documentation.
How do I declare a Dictionary object? A small example would be appreciated.
Thanks.