如何对 List进行排序 基于 T 的性质?

发布于 2024-07-14 14:12:37 字数 337 浏览 7 评论 0原文

我的代码如下所示:

Collection<NameValueCollection> optionInfoCollection = ....
List<NameValueCollection> optionInfoList = new List<NameValueCollection>();
optionInfoList = optionInfoCollection.ToList();

if(_isAlphabeticalSoting)
   Sort optionInfoList

我尝试了 optionInfoList.Sort() 但它不起作用。

My Code looks like this :

Collection<NameValueCollection> optionInfoCollection = ....
List<NameValueCollection> optionInfoList = new List<NameValueCollection>();
optionInfoList = optionInfoCollection.ToList();

if(_isAlphabeticalSoting)
   Sort optionInfoList

I tried optionInfoList.Sort() but it is not working.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(4

_失温 2024-07-21 14:12:37

使用排序方法和 lambda 表达式,这非常简单。

myList.Sort((a, b) => String.Compare(a.Name, b.Name))

上面的示例演示了如何按对象类型的 Name 属性进行排序,假设 Name 的类型为字符串。

Using the sort method and lambda expressions, it is really easy.

myList.Sort((a, b) => String.Compare(a.Name, b.Name))

The above example shows how to sort by the Name property of your object type, assuming Name is of type string.

翻身的咸鱼 2024-07-21 14:12:37

如果您只想让 Sort() 工作,那么您需要在类中实现 IComparableIComparable

如果您不介意创建列表,则可以使用OrderBy/ToList LINQ 扩展方法。 如果你想用更简单的语法对现有列表进行排序,你可以添加一些扩展方法,启用:

list.Sort(item => item.Name);

例如:

public static void Sort<TSource, TValue>(
    this List<TSource> source,
    Func<TSource, TValue> selector)
{
    var comparer = Comparer<TValue>.Default;
    source.Sort((x, y) => comparer.Compare(selector(x), selector(y)));
}
public  static void SortDescending<TSource, TValue>(
    this List<TSource> source,
    Func<TSource, TValue> selector)
{
    var comparer = Comparer<TValue>.Default;
    source.Sort((x, y) => comparer.Compare(selector(y), selector(x)));
}

If you just want Sort() to work, then you'll need to implement IComparable or IComparable<T> in the class.

If you don't mind creating a new list, you can use the OrderBy/ToList LINQ extension methods. If you want to sort the existing list with simpler syntax, you can add a few extension methods, enabling:

list.Sort(item => item.Name);

For example:

public static void Sort<TSource, TValue>(
    this List<TSource> source,
    Func<TSource, TValue> selector)
{
    var comparer = Comparer<TValue>.Default;
    source.Sort((x, y) => comparer.Compare(selector(x), selector(y)));
}
public  static void SortDescending<TSource, TValue>(
    this List<TSource> source,
    Func<TSource, TValue> selector)
{
    var comparer = Comparer<TValue>.Default;
    source.Sort((x, y) => comparer.Compare(selector(y), selector(x)));
}
高速公鹿 2024-07-21 14:12:37
public class Person  {
    public string FirstName { get; set; }
    public string LastName { get; set; }
}

List<Person> people = new List<Person>();

people.Sort(
    delegate(Person x, Person y) {
        if (x == null) {
            if (y == null) { return 0; }
            return -1;
        }
        if (y == null) { return 0; }
        return x.FirstName.CompareTo(y.FirstName);
    }
);
public class Person  {
    public string FirstName { get; set; }
    public string LastName { get; set; }
}

List<Person> people = new List<Person>();

people.Sort(
    delegate(Person x, Person y) {
        if (x == null) {
            if (y == null) { return 0; }
            return -1;
        }
        if (y == null) { return 0; }
        return x.FirstName.CompareTo(y.FirstName);
    }
);
初与友歌 2024-07-21 14:12:37

您需要设置一个比较器来告诉 Sort() 如何排列项目。

查看 List.Sort 方法 (IComparer) 了解如何操作的示例去做这个...

You need to set up a comparer that tells Sort() how to arrange the items.

Check out List.Sort Method (IComparer) for an example of how to do this...

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文