<?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>CS0230</ErrorName>
  <Examples>
    <string>// CS0230.cs: Type and identifier are both required in a foreach statement
// Line: 12

using System;

class X
{
	public static void Main()
	{
		int [] a = new int [5] {5, 4, 3, 2, 1};
		
		foreach (int in a) {
			Console.WriteLine (x);
		}
	}
}
</string>
  </Examples>
</ErrorDocumentation>