Collections Visual C++ .NET

#include "stdafx.h"
#using 
using namespace System;
using namespace System::Collections::Generic;
void main()
{
    Dictionary^ dict = gcnew Dictionary();
    dict->Add(1,  "One");
    dict->Add(6,  "Six");
    dict->Add(5,  "Five");
    dict->Add(3,  "3");
    dict[3] = "Three";
    dict[7] = "Seven";
        
    String^ t = dict[3];
    Console::WriteLine("dict[3] = {0}\n", t);
    
}