Trying to serialize Dictionary<string[],int>
var requestData = new Dictionary<string, object>
{
{ "games" ,new Dictionary<string[],int> { {new string[] { "1000"}, 1 } } }
};
var data = JsonConvert.SerializeObject(requestData);
The output JSON
looks something like
{"games":{"(Array)":1}}
which is not what I want. Info of string[]
is gone