C# Error
CS0846 – A nested array initializer is expected
Reason for the Error & Solution
A nested array initializer is expected
This error occurs when something other than an array initializer is used when creating an array.
Example
The following sample generates CS0846:
// CS0846.cs (0,0)
namespace Test
{
public class Program
{
public void Goo()
{
var a3 = new[,,] { { { 3, 4 } }, 3, 4 };
}
}
}
To correct this error
This example contains a 3-dimensional array. The initializer does not represent a three-dimensional array, resulting in CS0846. The last two statements in the top-level array initializer , 3, 4
are not an array initializer. Assuming the intent is to create a 3-dimensional array with 2, 1, and 2 elements per dimension, to correct this error, properly bracket the last two statements:
var a3 = new[, ,] { { { 3, 4 } }, { { 3, 4 } } };