Collections Visual C++ .NET

#include "stdafx.h"
#using 
using namespace System;
using namespace System::Collections;
using namespace System::Collections::Specialized;
void main()
{
    StringDictionary ^strdict = gcnew StringDictionary();
    strdict->Add("D", "d");
    strdict->Add("F", "f");
    strdict["C"] = "c";
}