summaryrefslogtreecommitdiff
path: root/src/mscorlib/src/System/Globalization/GlobalizationMode.cs
blob: 8f8309886da9f86f2e3ebb5a0dfdb89de98b25d2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
// See the LICENSE file in the project root for more information.

namespace System.Globalization
{
    internal sealed partial class GlobalizationMode
    {
        private const string c_InvariantModeConfigSwitch = "System.Globalization.Invariant";
        internal static bool Invariant { get; } = GetGlobalizationInvariantMode();
    }
}