File: Microsoft\Internal\StringComparers.cs
Web Access
Project: src\src\libraries\System.ComponentModel.Composition\src\System.ComponentModel.Composition.csproj (System.ComponentModel.Composition)
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
 
using System;
 
namespace Microsoft.Internal
{
    internal static class StringComparers
    {
        public static StringComparer ContractName
        {
            get { return StringComparer.Ordinal; }
        }
 
        public static StringComparer MetadataKeyNames
        {
            get { return StringComparer.Ordinal; }
        }
    }
}