You have the following code: You need to retrieve all of the numbers from the items variable that are greater than 80. Which code should you use?
正解:B
Explanation/Reference: Explanation: Example: All number larger than 15 from a list using the var query = from num in numbers... contstruct: var largeNumbersQuery = numbers2.Where(c => c > 15); Reference: How to: Write LINQ Queries in C# https://msdn.microsoft.com/en-us/library/bb397678.aspx