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