CultureInfo.cs 421 B

1234567891011121314151617
  1. namespace System.Globalization
  2. {
  3. partial class CultureInfo
  4. {
  5. #region referencesources legacy
  6. internal static CultureInfo ConstructCurrentCulture () => throw new NotImplementedException ();
  7. internal static CultureInfo ConstructCurrentUICulture () => throw new NotImplementedException ();
  8. internal static CultureInfo UserDefaultCulture {
  9. get {
  10. throw new NotImplementedException ();
  11. }
  12. }
  13. #endregion
  14. }
  15. }