blob: 4d3a8307b3ec13c816b7952c20dc8bab45d3b19a (
plain)
1
2
3
4
5
6
7
8
9
10
|
// CS1061: Type `string' does not contain a definition for `Where' and no extension method `Where' of type `string' could be found. Are you missing `System.Linq' using directive?
// Line: 8
public class M
{
public static void Main ()
{
var a = "ababab".Where (l => l == 'b');
}
}
|