Este método se usa para devolver un nuevo objeto DateTimeOffset que agrega un número específico de años al valor de la instancia actual.
Sintaxis: public DateTimeOffset AddYears (int años);
Aquí, lleva varios años. El número puede ser negativo o positivo.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 número de años representado por years.
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.AddYears(Int32) :
Ejemplo 1:
// C# program to demonstrate the // DateTimeOffset.AddYears(Int32) // 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 year to the value of this // instance using AddYears() method DateTimeOffset value = offset.AddYears(10); // 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/2017 07:55:00 -05:00
Ejemplo 2: para ArgumentOutOfRangeException
// C# program to demonstrate the // DateTimeOffset.AddYears(Int32) // 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 year to the value of this // instance using AddYears() method DateTimeOffset value = offset.AddYears(10); // 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