排序对象在C#中一个ArrayList [英] Sort an ArrayList of Objects in C#

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

问题描述

我如何排序对象的的ArrayList ?我已经实现了 IComparable的接口,而分拣的ArrayList ,但我没有得到所需的结果。

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.

我的code样品:<​​/ P>

My code sample:

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));
    }
}

在这里,我要排序的的ArrayList 根据计数

推荐答案

试试这个:

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));
    }
}

作为计数是字符串,它可能不会进行排序您预期的方式....

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

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

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