int[] a = new int[] { 2, 1, 3, 6, 8, 7 };
            Array.Sort(a,new CompareAge());
            foreach (int temp in a)
            {
                Response.Write(temp.ToString()+"<br>");
            }
    public class CompareAge:IComparer
    {
        int IComparer.Compare(object a,object b)
        {
            int i = 0,j = 0;
            int.TryParse(a.ToString(),out i);
            int.TryParse(b.ToString(),out j);
            return i -j;
        }
    }
posted on 2009-06-15 18:23 sanmao 阅读(83) 评论(0)  编辑  收藏

只有注册用户登录后才能发表评论。


网站导航:
 

常用链接

留言簿(5)

随笔分类

随笔档案

搜索

  •  

最新评论

阅读排行榜

评论排行榜