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

public class C
{
	void Test ()
	{
		var zCoords = new double[uint.MaxValue] { 0 };
	}
}
</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>