<?xml version="1.0" encoding="iso-8859-1"?>
<ErrorDocumentation xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
  <ErrorName>CS1579</ErrorName>
  <Examples>
    <string>// cs1579.cs: foreach statement cannot operate on variables of type X because X does not contain a definition for GetEnumerator or is not accessible
// Line: 10
class X {
}

class Y {
	void yy (X b)
	{
		
		foreach (object a in b)
			;
	}
}
</string>
  </Examples>
</ErrorDocumentation>