summaryrefslogtreecommitdiff
path: root/src/mscorlib/src/System/Globalization/GlobalizationMode.Unix.cs
blob: 68960290476f7b8caae77e3d8d8aa59153522cc5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
// 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 static bool GetGlobalizationInvariantMode()
        {
            bool invariantEnabled = CLRConfig.GetBoolValue(c_InvariantModeConfigSwitch);
            if (!invariantEnabled)
            {
                if (Interop.GlobalizationInterop.LoadICU() == 0)
                {
                    string message = "Couldn't find a valid ICU package installed on the system. " + 
                                    "Set the configuration flag System.Globalization.Invariant to true if you want to run with no globalization support.";
                    Environment.FailFast(message);
                }
            }
            return invariantEnabled;
        }
    }
}