I've long wanted a more succinct way of writing implicitly typed arrays. Whenever you work with data directly in the code, for example when hacking on leetcode, you end you with lots of horrible nested arrays:<p>new [] {new [] {1, 2}, new [] {3, 4}};<p>Something like:<p>@[ @[1, 2], @[3, 4] ]