Skip to content

Instantly share code, notes, and snippets.

@yujuwon
Created January 31, 2013 11:35
Show Gist options
  • Save yujuwon/4682268 to your computer and use it in GitHub Desktop.
Save yujuwon/4682268 to your computer and use it in GitHub Desktop.
private void Sorting(List<Test> list1)
{
list1.Sort(delegate(Test test1, Test test2)
{
return test1.DocLocation.CompareTo(test2.DocLocation);
});
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment