C# Program 12: How to convert UTC to SA Pacific Standard Time zone
class Program
{
static void Main(string[] args)
{
string sDateTime = "2019-03-03T16:30:00.0000000+00:00Z";
DateTime src = DateTime.Parse(sDateTime).ToUniversalTime();
Console.WriteLine("UTC Time is: "+src.ToLongDateString() + " " + src.ToShortTimeString());
DateTime converted = TimeZoneInfo.ConvertTimeFromUtc(src, TimeZoneInfo.FindSystemTimeZoneById("SA Pacific Standard Time"));
Console.WriteLine("SA Pacific Standard Time: " + converted.ToLongDateString() +" "+ converted.ToShortTimeString());
Console.ReadKey();
}
}
Output:
UTC Time is: Sunday, March 3, 2019 4:30 PM
SA Pacific Standard Time: Sunday, March 3, 2019 11:30 AM
If you have any queries or suggestions, please feel free to ask in comments section.
class Program
{
static void Main(string[] args)
{
string sDateTime = "2019-03-03T16:30:00.0000000+00:00Z";
DateTime src = DateTime.Parse(sDateTime).ToUniversalTime();
Console.WriteLine("UTC Time is: "+src.ToLongDateString() + " " + src.ToShortTimeString());
DateTime converted = TimeZoneInfo.ConvertTimeFromUtc(src, TimeZoneInfo.FindSystemTimeZoneById("SA Pacific Standard Time"));
Console.WriteLine("SA Pacific Standard Time: " + converted.ToLongDateString() +" "+ converted.ToShortTimeString());
Console.ReadKey();
}
}
Output:
UTC Time is: Sunday, March 3, 2019 4:30 PM
SA Pacific Standard Time: Sunday, March 3, 2019 11:30 AM
If you have any queries or suggestions, please feel free to ask in comments section.
Post a Comment
Please give your valuable feedback on this post. You can submit any ASP.NET article here. We will post that article in this website by your name.