<?xml version="1.0"?>
<ErrorDocumentation xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <ErrorName>CS1935</ErrorName>
  <Examples>
    <string>// CS1935: An implementation of `Cast' query expression pattern could not be found. Are you missing `System.Linq' using directive or `System.Core.dll' assembly reference?
// Line: 12


public class Test
{
	class Enumerable {}
		
	static void Main ()
	{
		var v = new int[0];
		var foo = from int a in v where a &gt; 0 select a;
	}
}
</string>
    <string>// CS1935: An implementation of `Select' query expression pattern could not be found. Are you missing `System.Linq' using directive or `System.Core.dll' assembly reference?
// Line: 10


public class Test
{
	static void Main ()
	{
		var v = new int[0];
		var foo = from a in v select a;
	}
}
</string>
  </Examples>
</ErrorDocumentation>