LINQ return type
Posted
by nettguy
on Stack Overflow
See other posts from Stack Overflow
or by nettguy
Published on 2010-03-26T21:01:34Z
Indexed on
2010/03/26
21:03 UTC
Read the original article
Hit count: 135
When i declare
var q=Enumerable.Range(1,10).where(c=>c%2==0);
will the extension method return IEnumerable or IQueryable?
© Stack Overflow or respective owner