c# Programming Glossary: query2.where
LINQ Query - Explanation needed of why these examples are different http://stackoverflow.com/questions/389767/linq-query-explanation-needed-of-why-these-examples-are-different expect foreach char vowel in aeiou var t vowel query2 query2.Where c c t iterate through query and output snipped for brevity Outputs.. what you might expect foreach char vowel in aeiou query2 query2.Where c c vowel iterate through query and output snipped for brevity.. char query2 Not what you might expect Char t1 'a' query2 query2.Where c c t1 Char t2 'e' query2 query2.Where c c t2 Char t3 'i' query2..
|