コード例 #1
0
        static void Main(string[] args)
        {
            Console.WriteLine("Run as admin. Check the time.");

            ComputerTime updatedTime = new ComputerTime
            {
                Year   = (ushort)2020,
                Month  = (ushort)12,
                Day    = (ushort)13,
                Hour   = (ushort)7,
                Minute = (ushort)0,
                Second = (ushort)0
            };

            Win32SetSystemTime(ref updatedTime);
        }
コード例 #2
0
 public extern static bool Win32SetSystemTime(ref ComputerTime sysTime);
コード例 #3
0
 public extern static void Win32GetSystemTime(ref ComputerTime sysTime);