在 C# 中对对象的 ArrayList 进行排序 [英] Sort an ArrayList of Objects in C#

查看:44
本文介绍了在 C# 中对对象的 ArrayList 进行排序的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

如何对对象的 ArrayList 进行排序?我在对 ArrayList 进行排序时实现了 IComparable 接口,但我没有得到所需的结果.

How can I sort an ArrayList of objects? I have implemented the IComparable interface while sorting the ArrayList, but I am not getting the required result.

我的代码示例:

public class Sort : IComparable
{
    public string Count { get; set; }
    public string Url { get; set; }
    public string Title { get; set; }

    public int CompareTo(object obj)
    {
        Sort objCompare = (Sort)obj;
        return (this.Count.CompareTo(objCompare.Count));
    }
}

这里我想根据CountArrayList进行排序.

Here I want to sort the ArrayList based on Count.

推荐答案

试试这个:

public class Sort : IComparable<Sort>
{
    public string Count { get; set; }
    public string Url { get; set; }
    public string Title { get; set; }

    public virtual int CompareTo(Sort obj)
    {
        return (Count.CompareTo(obj.Count));
    }
}

由于 Count 是字符串,它可能不会按照您期望的方式排序....

as Count is string, it may not sort the way you expect....

这篇关于在 C# 中对对象的 ArrayList 进行排序的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆