Created
October 23, 2012 19:04
-
-
Save kw0006667/3940880 to your computer and use it in GitHub Desktop.
將學生分數由高到低排序
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
students.Sort((x, y) => { return -x.Score.CompareTo(y.Score); }); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment