积极答复者
vista中文数字排序的问题

问题
答案
全部回复
-
看似不像是Vista Only的问题,看下面的代码:
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace UnicodeChar
{
class Program
{
static void Main(string[] args)
{
string first = "第一";
string second = "第二";
string third = "第三";
string[] stringArray = new string[] { first, second, third };
Array.Sort(stringArray);
for (int i = 0; i < stringArray.Length; i++)
{
Console.WriteLine(stringArray
);
}
}
}
}
结果也是
第一
第三
第二
所以我怀疑是Unicode的大小问题,等下给你答案