|
↑ わんだほー。
using System;
namespace ConsoleApplication6
{
class Program
{
[System.Runtime.InteropServices.DllImport(
"shlwapi.dll",
CharSet = System.Runtime.InteropServices.CharSet.Unicode,
ExactSpelling = true)]
public static extern int StrCmpLogicalW(string x, string y);
static void Main(string[] args)
{
string[] data = { "1_1.txt", "1_10.txt", "1_11.txt", "1_2.txt" };
Array.Sort(data, StrCmpLogicalW);
Array.ForEach(data, Console.WriteLine);
Console.ReadLine();
}
}
}
|