Este método se usa para devolver un nuevo DateTime que agrega el número especificado de milisegundos al valor de esta instancia.
Sintaxis:
public DateTime AddMilliseconds (double value);
Aquí, toma una cantidad de milisegundos enteros y fraccionarios. El parámetro de valor puede ser negativo o positivo y se redondea al entero más cercano.
Valor devuelto: este método devuelve un objeto cuyo valor es la suma de la fecha y la hora representadas por esta instancia y el número de milisegundos representados por value .
Excepciones: este método dará ArgumentOutOfRangeException si el DateTime resultante es menor que MinValue o mayor que MaxValue .
Los siguientes programas ilustran el uso del método DateTime.AddMilliseconds(Double) :
Ejemplo 1:
// C# program to demonstrate the // DateTime.AddMilliseconds() Method using System; class GFG { // Main Method public static void Main() { try { // creating object of DateTime DateTime date1 = new DateTime(2010, 1, 1, 4, 0, 15); // adding the 3000 Milliseconds // using AddMilliseconds() method; DateTime date2 = date1.AddMilliseconds(3000); // Display the date1 Console.WriteLine("DateTime before operation: " + "{0:hh}:{0:mm}:{0:ss}", date1); // Display the date2 Console.WriteLine("\nDateTime after operation: " + "{0:hh}:{0:mm}:{0:ss}", date2); } catch (ArgumentOutOfRangeException e) { Console.Write("Exception Thrown: "); Console.Write("{0}", e.GetType(), e.Message); } } }
DateTime before operation: 04:00:15 DateTime after operation: 04:00:18
Ejemplo 2: para ArgumentOutOfRangeException
// C# program to demonstrate the // DateTime.AddMilliseconds() Method using System; class GFG { // Main Method public static void Main() { try { // creating object of DateTime // and initialize with MinValue DateTime date1 = DateTime.MaxValue; // Display the date1 Console.WriteLine("DateTime before operation: " + "{0}", date1); // adding the 3000 Milliseconds // using AddHours() method; DateTime date2 = date1.AddHours(3000); // Display the date2 Console.WriteLine("\nDateTime after operation: " + "{0:hh}:{0:mm}:{0:ss}", date2); } catch (ArgumentOutOfRangeException e) { Console.WriteLine("\nThe resulting DateTime is "+ "greater than the DateTime.MaxValue "); Console.Write("Exception Thrown: "); Console.Write("{0}", e.GetType(), e.Message); } } }
DateTime before operation: 12/31/9999 23:59:59 The resulting DateTime is greater than the DateTime.MaxValue 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