Open In App

DateTimeOffset.ToLocalTime() Method in C#

Last Updated : 27 Feb, 2019
Comments
Improve
Suggest changes
Like Article
Like
Report
DateTimeOffset.ToLocalTime Method is used to convert the current DateTimeOffset object to a DateTimeOffset object which represents the local time.
Syntax: public DateTimeOffset ToLocalTime (); Return Value: This method returns an object that represents the date and time of the current DateTimeOffset object converted to local time.
Below programs illustrate the use of DateTimeOffset.ToLocalTime() Method: Example 1: csharp
// C# program to demonstrate the
// DateTimeOffset.ToLocalTime()
// Method
using System;
using System.Globalization;

class GFG {

    // Main Method
    public static void Main()
    {
        try {

            // creating object of  DateTimeOffset
            DateTimeOffset offset = new DateTimeOffset(2007,
                    6, 1, 7, 55, 0, new TimeSpan(-5, 0, 0));

            // Converts the current DateTimeOffset object
            // to a DateTimeOffset object that represents 
            // the local time instance using the 
            // ToLocalTime() method
            DateTimeOffset value = offset.ToLocalTime();

            // Display the time
            Console.WriteLine("DateTimeOffset is {0}", value);
        }

        catch (ArgumentOutOfRangeException e) 
        {
            Console.Write("Exception Thrown: ");
            Console.Write("{0}", e.GetType(), e.Message);
        }
    }
}
Output:
DateTimeOffset is 06/01/2007 12:55:00 +00:00
Example 2: csharp
// C# program to demonstrate the
// DateTimeOffset.ToLocalTime()
// Method
using System;
using System.Globalization;

class GFG {

    // Main Method
    public static void Main()
    {

        // creating object of  DateTimeOffset
        DateTimeOffset offset = new DateTimeOffset(2027,
                6, 1, 7, 55, 0, new TimeSpan(-5, 0, 0));

        // Converts the current DateTimeOffset object
        // to a DateTimeOffset object that represents 
        // the local time instance using the 
        // ToLocalTime() method
        DateTimeOffset value = offset.ToLocalTime();

        // Display the time
        Console.WriteLine("DateTimeOffset is {0}", value);
    }
}
Output:
DateTimeOffset is 06/01/2027 12:55:00 +00:00
Reference:

Next Article

Similar Reads