<?xml version="1.0"?>
<ErrorDocumentation xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <ErrorName>CS0150</ErrorName>
  <Examples>
    <string>// CS0150: 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>
    <string>// CS0150: A constant value is expected
// Line: 13

class Program
{
	static int Arg ()
	{
		return 4;
	}

	static void Main()
	{
		var s = $"{1,Arg()}";
	}
}</string>
    <string>// CS0150: A constant value is expected
// Line : 14

using System;

public class Blah
{
	static readonly string Test;
	
	public static void Main ()
	{
		string s = null;
		switch (s) {
			case Blah.Test:
				break;
		}
	}
}
</string>
    <string>// CS0150: A constant value is expected
// Line: 8

public class C
{
	void Test ()
	{
		var zCoords = new double[uint.MaxValue] { 0 };
	}
}
</string>
  </Examples>
</ErrorDocumentation>