<?xml version="1.0"?>
<ErrorDocumentation xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <ErrorName>CS0446</ErrorName>
  <Examples>
    <string>// CS0446: Foreach statement cannot operate on a `anonymous method'
// Line: 8

class C
{
	static void M ()
	{
		foreach (int i in delegate { } )
		{
		}
	}
}
</string>
    <string>// CS0446: Foreach statement cannot operate on a `method group'
// Line: 8

class C
{
	static void M ()
	{
		foreach (int i in Test)
		{
		}
	}

	static void Test () { }
}
</string>
  </Examples>
</ErrorDocumentation>