惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

S
SegmentFault 最新的问题
爱范儿
爱范儿
博客园 - 三生石上(FineUI控件)
Microsoft Security Blog
Microsoft Security Blog
Google DeepMind News
Google DeepMind News
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
GbyAI
GbyAI
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
V
V2EX
酷 壳 – CoolShell
酷 壳 – CoolShell
量子位
博客园_首页
T
Tailwind CSS Blog
aimingoo的专栏
aimingoo的专栏
A
About on SuperTechFans
T
The Blog of Author Tim Ferriss
Stack Overflow Blog
Stack Overflow Blog
Recent Announcements
Recent Announcements
P
Proofpoint News Feed
博客园 - 司徒正美
有赞技术团队
有赞技术团队
Engineering at Meta
Engineering at Meta
Last Week in AI
Last Week in AI
MongoDB | Blog
MongoDB | Blog

博客园 - Loder

Bye2025, Hi2026 Bye 2024, Hi 2025 Bye 2023, Hi2024 Bye2022, Hi2023 公文常用字体下载 【知乎经典回答】假如日本沉没,你认为日本会选择强攻一个地方还是谈判? Bye2021, Hi2022 家庭记账之会计科目设置 Bye2020, Hi2021 Bye2018, Hi2019 会计平台常见问题QA(2021年停止更新) bye 2016, hi 2017 某软件某平台常见问题处理方法 某软件某接口常见问题处理方法 某软件常见问题SQL排查方法 为什么说程序员的前三年不要太看重工资水平 Oracle查看锁表与解锁方法 Oracle执行CreateTableAs报ORA-600错误 HahaMil数据库(数据库操作组件)
List(支持按笔画排序的List类)
Loder · 2014-09-19 · via 博客园 - Loder
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;
        }
    }
}

posted @ 2014-09-19 15:07  Loder  阅读(416)  评论()    收藏  举报