<?xml version="1.0" encoding="us-ascii"?>
<ErrorDocumentation xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <ErrorName>CS0150</ErrorName>
  <Examples>
    <string>// cs0150-2.cs: A constant value is expected
// Line : 6

class C
{
	int [,] i = new int [2,null] { { 1 }, { 2 } };
}
 </string>
    <string>// cs0150.cs: A constant value is expected
// Line : 12

using System;

public class Blah {
	
	public static void Main ()
	{
		int foo = 6;
		
		int [] i = new int [foo] { 0, 1, 2, 3, 4, 5 };
	}
}
</string>
  </Examples>
</ErrorDocumentation>