首页 > 数据库技术 > 详细

不使用数据库,用程序快速排重

时间:2015-08-14 15:35:35      阅读:177      评论:0      收藏:0      [点我收藏+]

static void DistinctTest()
{
int[] echo = { 1, 1, 2, 3, 4, 5, 5, 6, 6, 7, 8, 9, 8, 10 };
IEnumerable<int> ienumerable = echo.Distinct();//去重,返回IEnumerable
int[] newecho = ienumerable.ToArray();//重新转换成数组
foreach (int i in newecho)
{
Console.WriteLine(i);
}
Console.ReadKey();
}

不使用数据库,用程序快速排重

原文:http://www.cnblogs.com/chinaboyzzy/p/4729898.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!