Open In App

DateTimeOffset.ToOffset() Method in C#

Last Updated : 27 Feb, 2019
Improve
Improve
Like Article
Like
Save
Share
Report

DateTimeOffset.ToOffset(TimeSpan) Method is used to convert the value of the current DateTimeOffset object to the date and time specified by an offset value.

Syntax: public DateTimeOffset ToOffset (TimeSpan offset);
Here, it takes the offset to convert the DateTimeOffset value to.

Return Value: This method returns an object that is equal to the original DateTimeOffset object (that is, their ToUniversalTime() methods return identical points in time) but whose Offset property is set to offset.

Exceptions:

  • ArgumentException If the resulting DateTimeOffset object has a DateTime value earlier than MinValue. Or the resulting DateTimeOffset object has a DateTime value later than MaxValue.
  • ArgumentOutOfRangeException If the offset is less than -14 hours. Or offset is greater than 14 hours.

Below programs illustrate the use of DateTimeOffset.ToOffset() Method:

Example 1:




// C# program to demonstrate the
// DateTimeOffset.ToOffset(TimeSpan)
// 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 value of 
            // the current DateTimeOffset
            // object to the date and time 
            // specified by an offset value.
            // instance using ToOffset() method
            DateTimeOffset value = offset.ToOffset(new TimeSpan(-5, 1, 0));
  
            // Display the time
            Console.WriteLine("DateTimeOffset is {0}", value);
        }
  
        catch (ArgumentOutOfRangeException e) 
        {
            Console.Write("Exception Thrown: ");
            Console.Write("{0}", e.GetType(), e.Message);
        }
  
        catch (ArgumentException e) 
        {
            Console.Write("Exception Thrown: ");
            Console.Write("{0}", e.GetType(), e.Message);
        }
    }
}


Output:

DateTimeOffset is 06/01/2007 07:56:00 -04:59

Example 2: For ArgumentOutOfRangeException




// C# program to demonstrate the
// DateTimeOffset.ToOffset(TimeSpan)
// Method
using System;
using System.Globalization;
  
class GFG {
  
    // Main Method
    public static void Main()
    {
        try {
  
            // creating object of  DateTimeOffset
            DateTimeOffset offset = DateTimeOffset.MaxValue;
  
            // Converts the value of the
            // current DateTimeOffset
            // object to the date and time 
            // specified by an offset value.
            // instance using ToOffset() method
            DateTimeOffset value = offset.ToOffset(new TimeSpan(5, 1, 0));
  
            // Display the time
            Console.WriteLine("DateTimeOffset is {0}", value);
        }
  
        catch (ArgumentOutOfRangeException e) 
        {
            Console.Write("Exception Thrown: ");
            Console.Write("{0}", e.GetType(), e.Message);
        }
  
        catch (ArgumentException e) 
        {
            Console.Write("Exception Thrown: ");
            Console.Write("{0}", e.GetType(), e.Message);
        }
    }
}


Output:

Exception Thrown: System.ArgumentOutOfRangeException

Reference:



Like Article
Suggest improvement
Share your thoughts in the comments

Similar Reads