I’m trying to initialize a dictionary with string elements as keys and int[] elements as values, as follows:
System.Collections.Generic.Dictionary<string,int[]> myDictionary;
myDictionary = new Dictionary<string,int[]>{{"length",{1,1}},{"width",{1,1}}};
But the debugger keeps saying: “Unexpected symbol ‘{‘”.
Could you tell me what’s wrong with the above code?
Thank you!
I am not sure for c# but the following works in Java for example:
instead of
try
or