Hi Guys,
In C#,
How to print time format like this that UTC time + 10.00 as Australia time with day light saving
2022-09-23T09:23:57+10:00
if day light means
2022-09-23T09:23:57+11:00
thanks in advance
with regards,
saravana
Hi Guys,
In C#,
How to print time format like this that UTC time + 10.00 as Australia time with day light saving
2022-09-23T09:23:57+10:00
if day light means
2022-09-23T09:23:57+11:00
thanks in advance
with regards,
saravana
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
Muhammad Imran AnsariPosted Sep 23, 2022, 1:06 PM
In C#, following code will give you the UTC format:
UTC time format does not have a timezone, so it wouldn't be but this will add it:
Rajanikant HawaldarPosted Sep 23, 2022, 12:48 PM
if the computer is not configured for Australia time, you will want to use TimeZoneInfo.FindSystemTimeZoneById("AUS Eastern Standard Time") for time conversions