Convert UTC to Local TimeZone
public class TimeZoneConvertorHelper { private static readonly TimeZoneInfo IndiaTimeZone; static TimeZoneHelper() { IndiaTimeZone = TimeZoneInfo.FindSystemTimeZoneById("India Standard Time"); } public static DateTime GetCurrentMelbourneDateTime() { return TimeZoneInfo.ConvertTimeFromUtc(DateTime.UtcNow, IndiaTimeZone); } }
No comments :
Post a Comment