Welcome to mirror list, hosted at ThFree Co, Russian Federation.

StringComparers.cs « Internal « Microsoft « ComponentModel « src « System.ComponentModel.Composition « class « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: d66113b4730abe64832592f5c48a43e7959d791d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
// -----------------------------------------------------------------------
// Copyright (c) Microsoft Corporation.  All rights reserved.
// -----------------------------------------------------------------------
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; }
        }
    }
}