标签: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; } } }
标签:style blog color io ar div sp cti log
原文地址:http://www.cnblogs.com/weixiaojun/p/3981493.html