黑马程序员技术交流社区

标题: List<T>集合的通用Sort扩展 [打印本页]

作者: 徐艳勇    时间: 2012-10-13 13:45
标题: List<T>集合的通用Sort扩展
  1. public static IList<T> Sort<T>(this IList<T> source, string sortProper, bool asc)
  2. {
  3. if (source != null && source.Any())
  4. {
  5. var properties = typeof(T).GetProperties();
  6. PropertyInfo pro = null;
  7. foreach (var item in properties)
  8. {
  9. if (item.Name.ToUpper().Equals(sortProper.ToUpper()))
  10. {
  11. pro = item;
  12. break;
  13. }
  14. }
  15. for (int i = 0; i < source.Count; i++)
  16. {
  17. T t;
  18. for (int k = 0; k < source.Count; k++)
  19. {
  20. int compare = pro.GetValue(source[i], null).ToString().CompareTo(pro.GetValue(source[k], null).ToString());
  21. if ((asc && compare <0)||(!asc && compare > 0))
  22. {
  23. t = source[i];
  24. source[i] = source[k];
  25. source[k] = t;
  26. }
  27. }
  28. }
  29. return source;
  30. }
  31. return null;
  32. }
复制代码

作者: 许庭洲    时间: 2012-10-13 19:55
值得学习ing!




欢迎光临 黑马程序员技术交流社区 (http://bbs.itheima.com/) 黑马程序员IT技术论坛 X3.2