link能不能直接調用方法?還是只能寫表達式?
int[] array = { 1, 2, 3, 4, 5, 6, 7, 8 };
var query = from x in array
where Predicate
select x;
foreach (int item in query)
Console.WriteLine(item);
bool Predicate(int n)
{
if (n % 2 == 0)
return true;
return false;
}
為什麼不行?
int[] array = { 1, 2, 3, 4, 5, 6, 7, 8 };
var query = from x in array
where Predicate(x)
select x;
這樣寫也可以。注意是調用方法,不是傳方法。