码迷,mamicode.com
首页 > 编程语言 > 详细

新建排序类,以用于List<T>的自定义排序

时间:2020-02-13 17:29:36      阅读:96      评论:0      收藏:0      [点我收藏+]

标签:compareto   try   this   throw   str   except   return   his   message   

class MenuInfo : IComparable
{
public int order { get; set; }
public string menuid { get; set; }
public int CompareTo(object obj)
{
int result;
try
{
MenuInfo menuInfo = obj as MenuInfo;
if (this.order >= menuInfo.order)
{
result = 1;
}
else
{
result = -1;
}
return result;
}
catch (Exception ex)
{
throw new Exception(ex.Message);
}
}
}

新建排序类,以用于List<T>的自定义排序

标签:compareto   try   this   throw   str   except   return   his   message   

原文地址:https://www.cnblogs.com/whisful/p/12303924.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!