Este método se usa para devolver un nuevo objeto DateTimeOffset que agrega un intervalo de tiempo específico al valor de esta instancia.
Sintaxis: public DateTimeOffset Add (TimeSpan timeSpan);
Aquí, toma un objeto TimeSpan que representa un intervalo de tiempo positivo o negativo.
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 el intervalo de tiempo representado por timeSpan.
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.Add(TimeSpan) :
Ejemplo 1:
csharp
// C# program to demonstrate the // DateTimeOffset.Add(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)); // creating object of TimeSpan TimeSpan elapsedTime = new TimeSpan(10, 0, 0); // adding a specified time interval // to the value of this instance. // using Add() method; DateTimeOffset value = offset.Add(elapsedTime); // Display the time Console.WriteLine("DateTimeOffset is {0}", value); } catch (ArgumentOutOfRangeException e) { Console.Write("Exception Thrown: "); Console.Write("{0}", e.GetType(), e.Message); } } }
DateTimeOffset is 06/01/2007 17:55:00 -05:00
Ejemplo 2: para ArgumentOutOfRangeException
csharp
// C# program to demonstrate the // DateTimeOffset.Add(TimeSpan) // Method using System; using System.Globalization; class GFG { // Main Method public static void Main() { try { // creating object of DateTimeOffset DateTimeOffset offset = DateTimeOffset.MaxValue; // creating object of TimeSpan TimeSpan elapsedTime = new TimeSpan(10, 0, 0); // adding a specified time interval // to the value of this instance. // using Add() method; DateTimeOffset value = offset.Add(elapsedTime); // Display the time Console.WriteLine("DateTimeOffset is {0}", value); } catch (ArgumentOutOfRangeException e) { Console.Write("Exception Thrown: "); Console.Write("{0}", e.GetType(), e.Message); } } }
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