File: misc\InvariantComparer.cs
Web Access
Project: src\src\System.Windows.Forms\System.Windows.Forms.csproj (System.Windows.Forms)
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
 
using System.Collections;
using System.Globalization;
 
namespace System;
 
internal class InvariantComparer : IComparer
{
    private readonly CompareInfo _compareInfo;
    internal static InvariantComparer Default { get; } = new();
 
    internal InvariantComparer()
    {
        _compareInfo = CultureInfo.InvariantCulture.CompareInfo;
    }
 
    public int Compare(object? a, object? b)
    {
        if (a is string sa && b is string sb)
        {
            return _compareInfo.Compare(sa, sb);
        }
        else
        {
            return Comparer.Default.Compare(a, b);
        }
    }
}