Fix pragma warning restore (dotnet/coreclr#26389)
[mono-project.git] / netcore / System.Private.CoreLib / shared / System / DateTime.Win32.cs
blobd33ccfea6fd72507d2529d1579b41167322b23d5
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 readonly partial struct DateTime
9 private static unsafe bool SystemSupportsLeapSeconds()
11 Interop.NtDll.SYSTEM_LEAP_SECOND_INFORMATION slsi;
13 return Interop.NtDll.NtQuerySystemInformation(
14 Interop.NtDll.SystemLeapSecondInformation,
15 (void*)&slsi,
16 sizeof(Interop.NtDll.SYSTEM_LEAP_SECOND_INFORMATION),
17 null) == 0 && slsi.Enabled;