SystemTrayMenu/Helpers/WindowsExplorerSort.cs

13 lines
285 B
C#

using System.Collections.Generic;
namespace SystemTrayMenu.Helper
{
internal class WindowsExplorerSort : IComparer<string>
{
public int Compare(string x, string y)
{
return DllImports.NativeMethods.ShlwapiStrCmpLogicalW(x, y);
}
}
}