What is the best way to set the machine time in C#?
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
You’ll probably need to use the Win32 API to do this, as I’m fairly sure there’s nothing baked into the framework:
There’s a fuller example at PInvoke.net, the code’s a bit dense, but a simple excerpt that’s fairly plain to read and understand is this:
The relevant specific Win32 API’s are SetSystemTime, GetSystemTime and the SYSTEMTIME structure.