<?xml version="1.0"?>
<ErrorDocumentation xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <ErrorName>CS0847</ErrorName>
  <Examples>
    <string>// CS0847: An array initializer of length `2' was expected
// Line: 9

class M
{
	public static void Main ()
	{
		int[,,] i = { { { 0, 0 }, { 1, 1} },
			{ { 2, 2 } } };
	}
}
</string>
    <string>// CS0847: An array initializer of length `2' was expected
// Line: 9

class M
{
	public static void Main ()
	{
		int[,] i = { {0, 0},
			{ 1 } };
	}
}
</string>
    <string>// CS0847: An array initializer of length `1' was expected
// Line: 8

class M
{
	public static void Main ()
	{
		int[] i = new int [1] { 2, 3 };
	}
}
</string>
    <string>// CS0847: An array initializer of length `3' was expected
// Line: 9

class M
{
	public static void Main ()
	{
		int[,,] i = { { { 0, 0, 0 }, { 1, 1, 1 } },
			{ { 2 }, { 3, 3, 3 } } };
	}
}
</string>
  </Examples>
</ErrorDocumentation>