I can\'t seem to find any documentation on what new[] is supposed to be. From the example below it seems to be an object array shorthand
var json = new[] {
The notation is an implicitly typed array declaration.
In your case, it is a array of object arrays.