Skip to content

Instantly share code, notes, and snippets.

@kw0006667
Created October 23, 2012 19:19
Show Gist options
  • Save kw0006667/3940992 to your computer and use it in GitHub Desktop.
Save kw0006667/3940992 to your computer and use it in GitHub Desktop.
從10個學生中取出成績不及格的
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