Files
FSI.BT.IR.Tools/FSI.BT.Tools/SystemTrayMenu/Helpers/WindowsExplorerSort.cs
Maier Stephan SI 1c68b8f401 Sicherung
2023-04-17 07:07:49 +02:00

17 lines
458 B
C#

// <copyright file="WindowsExplorerSort.cs" company="PlaceholderCompany">
// Copyright (c) PlaceholderCompany. All rights reserved.
// </copyright>
namespace FSI.BT.Tools.SystemTrayMenu.Helper
{
using System.Collections.Generic;
internal class WindowsExplorerSort : IComparer<string>
{
public int Compare(string x, string y)
{
return Global.DllImports.NativeMethods.ShlwapiStrCmpLogicalW(x, y);
}
}
}