开发者

Get & Set system time in C#

开发者 https://www.devze.com 2023-01-05 05:54 出处:网络
I found one piece of sample code from web forum. When I began to learn it. I found the output is very strange.

I found one piece of sample code from web forum. When I began to learn it. I found the output is very strange.

Why does the code can't work well?

It always go forward 8 hours when I run the code below.

VS2005 and WinXP used.Thank you.

class Tester
    {
        [System.Runtime.InteropServices.DllImport("kernel32", SetLastError =
        true)]
        private static extern bool GetSystemTime(out SYSTEMTIME systemTime);
     开发者_运维知识库   [System.Runtime.InteropServices.DllImport("kernel32", SetLastError =
        true)]
        private static extern bool SetSystemTime(ref SYSTEMTIME systemTime);
        struct SYSTEMTIME
        {
            internal short wYear;
            internal short wMonth;
            internal short wDayOfWeek;
            internal short wDay;
            internal short wHour;
            internal short wMinute;
            internal short wSecond;
            internal short wMilliseconds;
        }
        static void Main()
        {
            SYSTEMTIME st;
            if (GetSystemTime(out st))
            {
                st.wHour = 2;   // new system time was set to nearby 10:00 AM, 2 + 8
                // If i replace the line with below one. 
                // st.wHour = 18;  // new system time was set to nearby 2:00 AM next day, 18 + 8 = 26, 26 - 24. go to next day!
                if (SetSystemTime(ref st))
                    Console.WriteLine("success");
                else
                    Console.WriteLine(System.Runtime.InteropServices.Marshal.GetLastWin32Error());
            }
            else
                Console.WriteLine("GetSystemTime failed: {0}",
                System.Runtime.InteropServices.Marshal.GetLastWin32Error());
        }
    }


The system time is returned in UTC - use GetLocalTime instead:

http://msdn.microsoft.com/en-us/library/ms724390(VS.85).aspx


GetSystemTime Function

Retrieves the current system date and time. The system time is expressed in Coordinated Universal Time (UTC).

To retrieve the current system date and time in local time, use the GetLocalTime function

0

精彩评论

暂无评论...
验证码 换一张
取 消

关注公众号