Help with Adjusting DateTime.Now and Date-time.Today to the User's Current Time Zone | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 3

Help with Adjusting DateTime.Now and Date-time.Today to the User's Current Time Zone

I've searched some help online for this but they look all confusing for an absolute beginner of the coding world like me. So,I'm curious if there's a simple code or method to arrange it. *As you know the static classes above returns a result in accordance with the British time zone, in my case (Turkey) it is 3 hours behind my time zone now.

22nd Sep 2019, 2:21 PM
Aykut AKSAKAL
Aykut AKSAKAL - avatar
8 Answers
+ 2
I did find two typos in my response, I should have tested it. Anyway here's a working piece of code: https://code.sololearn.com/crHkA3tYdDm5/?ref=app
24th Sep 2019, 9:26 AM
Schindlabua
Schindlabua - avatar
+ 2
Please specify the language in Relevant Tags 👍 (Edit) Language specification added in Relevant Tags.
22nd Sep 2019, 2:36 PM
Ipang
+ 2
Actually, `DateTime.Now` should return local time; whatever is set on the computer you are running the program on; maybe something is misconfigured? To get UTC time, there is `DateTime.UtcNow`. ** But you can also manually convert from UTC to Turkey Time if you want to, by defining a time zone: var timeZoneOffset = new TimeSpan(3, 0, 0); // 3 hours var turkeyTime = TimeZoneInfo.CreateCustomTimeZone("TRT", timeZoneOffset, "(GMT+03:00) Europe/Istanbul", "Turkey Time"); And then you can convert from UTC to it like so: var utcTime = DateTime.UtcNow; var time = TimeZoneInfo.ConvertFromUtc(utcTime, turkeyTime); Console.WriteLine(time); // 9/22/2019 6:27:19 PM And if you want to output the date like you would write it in turkey: using System.Globalization; var turkeyCulture = new CultureInfo("tr-TR"); Console.WriteLine(time.toString(turkeyCulture)); // 22.09.2019 18:27:19 Time is pretty complicated isn't it? (Be glad you got rid of daylight savings.) ____ ** UTC isn't british time! But it's very close.
22nd Sep 2019, 3:29 PM
Schindlabua
Schindlabua - avatar
+ 1
Ipang I forgot to add.. done now :) c#
22nd Sep 2019, 2:38 PM
Aykut AKSAKAL
Aykut AKSAKAL - avatar
+ 1
Thanks for your understanding 😁👍
22nd Sep 2019, 2:39 PM
Ipang
+ 1
Schindlabua when I get a chance to have enough time I'll work on this with the codes and explanations you provided and then return to you :) Thanks
22nd Sep 2019, 10:06 PM
Aykut AKSAKAL
Aykut AKSAKAL - avatar
+ 1
Schindlabua I've tried in many ways but it keeps causing an error. I guess I couldn't figure it out and need to put it aside until I get a better understanding of C# Thanks for the help and understanding though :)
23rd Sep 2019, 11:10 PM
Aykut AKSAKAL
Aykut AKSAKAL - avatar
+ 1
Schindlabua Ah, it works. Thanks a lot
24th Sep 2019, 11:08 AM
Aykut AKSAKAL
Aykut AKSAKAL - avatar