当前位置:  开发笔记 > 编程语言 > 正文

C#相当于std :: sort和std :: unique

如何解决《C#相当于std::sort和std::unique》经验,为你挑选了1个好方法。



1> Jon Skeet..:

您使用的是什么版本的.NET?

在.NET 3.5中,如果你真的需要一个数组,就像调用Distinct()扩展方法然后调用ToArray()一样简单.

例如:

int[] x = new[] { 1, 4, 23, 4, 1 };
int[] distinct = x.Distinct().ToArray();
// distinct is now { 1, 4, 23 } (but not necessarily in that order)

推荐阅读
mobiledu2402851373
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有