Método DateTimeOffset.AddDays() en C#

Este método se usa para devolver un nuevo objeto DateTimeOffset que agrega un número específico de días enteros y fraccionarios al valor de esta instancia.

Sintaxis: public DateTimeOffset AddDays (días dobles);
Aquí, toma un número de días enteros y fraccionarios.

Valor devuelto: este método devuelve un objeto cuyo valor es la suma de la fecha y la hora representadas por el objeto DateTimeOffset actual y la cantidad de días representados por días.

Excepción: este método dará ArgumentOutOfRangeException si el valor de DateTimeOffset resultante es menor que MinValue o el valor de DateTimeOffset resultante es mayor que MaxValue.

Los siguientes programas ilustran el uso del método DateTimeOffset.AddDays(Double) :

Ejemplo 1:

// C# program to demonstrate the
// DateTimeOffset.AddDays(Double)
// 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 specified number of whole 
            // and fractional days to the value 
            // of this instance using AddDays(Double) 
            // method
            DateTimeOffset value = offset.AddDays(10);
  
            // Display the time
            Console.WriteLine("DateTimeOffset is {0}", value);
        }
  
        catch (ArgumentOutOfRangeException e) {
            Console.Write("Exception Thrown: ");
            Console.Write("{0}", e.GetType(), e.Message);
        }
    }
}
Producción:

DateTimeOffset is 06/11/2007 07:55:00 -05:00

Ejemplo 2: para ArgumentOutOfRangeException

// C# program to demonstrate the
// DateTimeOffset.AddDays(Double)
// 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 specified number of whole and
            // fractional days to the value of this instance.
            // using AddDays(Double) method;
            DateTimeOffset value = offset.AddDays(10);
  
            // Display the time
            Console.WriteLine("DateTimeOffset is {0}", value);
        }
  
        catch (ArgumentOutOfRangeException e) {
            Console.Write("Exception Thrown: ");
            Console.Write("{0}", e.GetType(), e.Message);
        }
    }
}
Producción:

Exception Thrown: System.ArgumentOutOfRangeException

Referencia:

Publicación traducida automáticamente

Artículo escrito por RohitPrasad3 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA

Deja una respuesta

Tu dirección de correo electrónico no será publicada. Los campos obligatorios están marcados con *