Improve Dictionary TryGetValue size/perfomance (dotnet/coreclr#27195)
[mono-project.git] / netcore / System.Private.CoreLib / shared / System / StringComparison.cs
blobd5c18c8021e5cfd02c296cb32ba8a66d289379b0
1 // Licensed to the .NET Foundation under one or more agreements.
2 // The .NET Foundation licenses this file to you under the MIT license.
3 // See the LICENSE file in the project root for more information.
5 namespace System
7 public enum StringComparison
9 CurrentCulture = 0,
10 CurrentCultureIgnoreCase = 1,
11 InvariantCulture = 2,
12 InvariantCultureIgnoreCase = 3,
13 Ordinal = 4,
14 OrdinalIgnoreCase = 5,