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.
4 
5 using Internal.Runtime.Augments;
6 
7 namespace System.Globalization
8 {
9     public partial class CultureInfo : IFormatProvider
10     {
11         /// <summary>
12         /// Gets the default user culture from WinRT, if available.
13         /// </summary>
14         /// <remarks>
15         /// This method may return null, if there is no default user culture or if WinRT isn't available.
16         /// </remarks>
GetUserDefaultCultureCacheOverride()17         private static CultureInfo GetUserDefaultCultureCacheOverride()
18         {
19             return CultureInfo.InvariantCulture;
20         }
21 
GetUserDefaultCulture()22         private static CultureInfo GetUserDefaultCulture()
23         {
24             return CultureInfo.InvariantCulture;
25         }
26     }
27 }
28