Skip to content

Instantly share code, notes, and snippets.

@kw0006667
Created October 23, 2012 19:04
Show Gist options
  • Save kw0006667/3940880 to your computer and use it in GitHub Desktop.
Save kw0006667/3940880 to your computer and use it in GitHub Desktop.
將學生分數由高到低排序
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