Q:

C# program to get the difference between local time zone and UTC (Coordinated Universal Time)

belongs to collection: C# TimeZoneInfo Class Programs

0

Syntax:

    int TimeZoneInfo.BaseUtcOffset.Hours

Return value:

It returns an integer value that denotes the difference between local time and UTC.

 

All Answers

need an explanation for this answer? contact us directly to get an explanation for this answer

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.

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 . . .

 

need an explanation for this answer? contact us directly to get an explanation for this answer

total answers (1)

C# TimeZoneInfo Class Programs

This question belongs to these collections

Similar questions


need a help?


find thousands of online teachers now
C# program to get the DisplayName of local time zo... >>
<< C# program to get the local time zone (TimeZoneInf...