The source code to get the difference between local time zone and UTC (Coordinated Universal Time) is given below. The given program is compiled and executed successfully.
using System;
using System.Globalization;
class TimeZoneInfoDemo
{
//Entry point of Program
static public void Main()
{
int timeZoneDiff = 0;
TimeZoneInfo localTimeZone;
localTimeZone = TimeZoneInfo.Local;
timeZoneDiff = localTimeZone.BaseUtcOffset.Hours;
Console.WriteLine("Difference between local time and UTC: " + timeZoneDiff);
}
}
Output:
Difference between local time and UTC: 5
Press any key to continue . . .
Program:
The source code to get the difference between local time zone and UTC (Coordinated Universal Time) is given below. The given program is compiled and executed successfully.
Output: