Open In App

DateTimeOffset.AddTicks() Method in C#

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

This method is used to return a new DateTimeOffset object that adds a specified number of ticks to the value of the current instance.

Syntax: public DateTimeOffset AddTicks (long ticks);
Here, it takes a number of 100-nanosecond ticks. The number can be negative or positive.

Return Value: This method returns an object whose value is the sum of the date and time represented by the current DateTimeOffset object and the number of ticks represented by ticks.

Exception: This method will give ArgumentOutOfRangeException if the resulting DateTimeOffset value is less than MinValue or the resulting DateTimeOffset value is greater than MaxValue.

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

Example 1:




// C# program to demonstrate the
// DateTimeOffset.AddTicks(Int64)
// 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));
  
            // adding a 100 nanoseconds of ticks
            // instance using AddTicks() method
            DateTimeOffset value = offset.AddTicks(10000000);
  
            // 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 07:55:01 -05:00

Example 2: For ArgumentOutOfRangeException




// C# program to demonstrate the
// DateTimeOffset.AddTicks(Int64)
// Method
using System;
using System.Globalization;
  
class GFG {
  
    // Main Method
    public static void Main()
    {
        try {
  
            // creating object of  DateTimeOffset
            DateTimeOffset offset = DateTimeOffset.MaxValue;
  
            // adding a 100 nanoseconds of ticks
            // instance using AddTicks() method
            DateTimeOffset value = offset.AddTicks(10000000);
  
            // Display the time
            Console.WriteLine("DateTimeOffset is {0}", value);
        }
  
        catch (ArgumentOutOfRangeException e) {
            Console.Write("Exception Thrown: ");
            Console.Write("{0}", e.GetType(), e.Message);
        }
    }
}


Output:

Exception Thrown: System.ArgumentOutOfRangeException

Reference:



Like Article
Suggest improvement
Previous
Next
Share your thoughts in the comments

Similar Reads