Posts

Showing posts from 2025

Get UTC time in IST

 Below is the code snippet which helps to get UTC date and time in Indian Standard Time (+5.30) System.TimeZoneInfo timeZone = System.TimeZoneInfo::FindSystemTimeZoneById("India Standard Time");  System.DateTime localTime = System.TimeZoneInfo::ConvertTimeFromUtc(System.DateTime::UtcNow, timeZone); // Convert from utc to IST.  Info(strFmt("Local Time: %1", localTime.ToString("MM/dd/yyyy")));  Info(strFmt("Local Time: %1", localTime.ToString("dddd, dd MMMM yyyy")));  Info(strFmt("Local Time: %1", localTime.ToString("MMMM dd")));  Info(strFmt("Local Time: %1", localTime.ToString("dddd, dd MMMM yyyy HH:mm:ss")));  Info(strFmt("Local Time: %1", localTime.ToString("MM/dd/yyyy HH:mm")));  Info(strFmt("Local Time: %1", localTime.ToString("MM/dd/yyyy hh:mm tt")));  Info(strFmt("Local Time: %1", localTime.ToString("MM/dd/yyyy H:mm")));  Info(strFm...