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