C#中的自然排序顺序

C#中的自然排序顺序,第1张

C#中的自然排序顺序

最简单的 *** 作是在Windows中P / Invoke内置函数,并将其用作比较函数

IComparer

[Dllimport("shlwapi.dll", CharSet = CharSet.Unipre)]private static extern int StrCmpLogicalW(string psz1, string psz2);

Michael
Kaplan提供了一些有关此功能如何在此处工作的示例,以及为使Vista更直观地工作而进行的更改。此功能的好处是,它将具有与其运行的Windows版本相同的行为,但这确实意味着它在Windows版本之间有所不同,因此您需要考虑这是否对您有问题。

因此,完整的实现应类似于:

[SuppressUnmanagedCodeSecurity]internal static class SafeNativeMethods{    [Dllimport("shlwapi.dll", CharSet = CharSet.Unipre)]    public static extern int StrCmpLogicalW(string psz1, string psz2);}public sealed class NaturalStringComparer : IComparer<string>{    public int Compare(string a, string b)    {        return SafeNativeMethods.StrCmpLogicalW(a, b);    }}public sealed class NaturalFileInfonameComparer : IComparer<FileInfo>{    public int Compare(FileInfo a, FileInfo b)    {        return SafeNativeMethods.StrCmpLogicalW(a.Name, b.Name);    }}


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/5018434.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-11-14
下一篇 2022-11-14

发表评论

登录后才能评论

评论列表(0条)

保存