I used in my C++/CLI project static array's like:
static array < array< String^>^>^ myarray=
{
{"StringA"},
{"StringB"}
};
Is it possible to create a dictionary the same way? I was not able to create and initialize one.
static Dictionary< String^, String^>^ myDic=
{
{"StringA", "1"},
{"StringB", "2"}
};
Thx