Mega Code Archive

 
Categories / Visual C++ .NET / Collections
 

Adding value pair to a dictionary

#include "stdafx.h" #using <system.dll> using namespace System; using namespace System::Collections::Generic; void main() {     Dictionary<int,String^>^ dict = gcnew Dictionary<int,String^>();     dict->Add(1,  "One");     dict->Add(6,  "Six");     dict->Add(5,  "Five");     dict->Add(3,  "3"); }