Created
October 23, 2012 19:19
-
-
Save kw0006667/3940992 to your computer and use it in GitHub Desktop.
從10個學生中取出成績不及格的
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var query = from stu in students | |
where stu.Score < 60 | |
select stu; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment