码迷,mamicode.com
首页 > 其他好文 > 详细

List(支持按笔画排序的List类)

时间:2014-09-19 17:14:55      阅读:111      评论:0      收藏:0      [点我收藏+]

标签:style   blog   color   io   ar   div   sp   cti   log   

using System;
using System.Collections.Generic;
using System.Globalization;
using System.Threading;

namespace HahaMil.Util
{
    /// <summary>
    /// List(string\笔画)
    /// 用于按笔画排序
    /// </summary>
    public class StrokesList : List<string>
    {
        /// <summary>
        /// 排序方法
        /// 按笔画对列表中的对象排序
        /// </summary>
        public void Sort()
        {
            CultureInfo culInfo = Thread.CurrentThread.CurrentCulture;
            Thread.CurrentThread.CurrentCulture = new CultureInfo(133124);
            base.Sort();
            Thread.CurrentThread.CurrentCulture = culInfo;
        }
    }
}

 

List(支持按笔画排序的List类)

标签:style   blog   color   io   ar   div   sp   cti   log   

原文地址:http://www.cnblogs.com/weixiaojun/p/3981493.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!