gpt4 book ai didi

c# - 在 Windows 7 上使用 C# 设置系统时间

转载 作者:太空宇宙 更新时间:2023-11-03 19:26:50 25 4
gpt4 key购买 nike

如何在 Windows 7 上使用 C# 以编程方式设置本地时间?

最佳答案

[StructLayout(LayoutKind.Sequential)]
public struct SYSTEMTIME
{
public short wYear;
public short wMonth;
public short wDayOfWeek;
public short wDay;
public short wHour;
public short wMinute;
public short wSecond;
public short wMilliseconds;
}

[DllImport("kernel32.dll", SetLastError=true)]
public static extern bool SetSystemTime( [In] ref SYSTEMTIME st );

SYSTEMTIME st = new SYSTEMTIME();
st.wYear = 2003; // must be short
st.wMonth = 5;
st.wDay = 22;
st.wHour = 0;
st.wMinute = 0;
st.wSecond = 0;

SetSystemTime(ref st);

关于c# - 在 Windows 7 上使用 C# 设置系统时间,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8009578/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com