.net 自然排序方式
摘要:using System;using System.Collections.Generic;using System.Linq;using System.Text;namespace ConsoleApplication12{ class Program { static void Main(string[] args) { string[] str = new string[] { "A1", "A2", "A10" }; Array.Sort(str, new CustomComparer()); ...
阅读全文
posted @ 2014-01-21 10:42