Este método se utiliza para convertir el valor del objeto DateTime actual en su representación de string de tiempo breve equivalente.
Sintaxis: string pública ToShortTimeString();
Valor de retorno: este método devuelve una string que contiene la representación de string de tiempo breve del objeto DateTime actual.
Los siguientes programas ilustran el uso del método DateTime.ToShortTimeString() :
Ejemplo 1:
// C# program to demonstrate the // DateTime.ToShortTimeString() // Method using System; using System.Globalization; class GFG { // Main Method public static void Main() { try { // creating object of DateTime DateTime date = new DateTime(2010, 1, 1, 4, 0, 15); // getting ShortTime from DateTime // using ToShortTimeString() method; string value = date.ToShortTimeString(); // Display the ShortTime Console.WriteLine("ShortTime is {0}", value); } catch (FormatException e) { Console.Write("Exception Thrown: "); Console.Write("{0}", e.GetType(), e.Message); } } }
Producción:
ShortTime is 04:00
Ejemplo 2:
// C# program to demonstrate the // DateTime.ToShortTimeString() // Method using System; using System.Globalization; class GFG { // Main Method public static void Main() { // calling check() method check(new DateTime(2010, 1, 3, 4, 0, 15)); check(new DateTime(2010, 1, 5, 4, 0, 15)); } public static void check(DateTime date) { // getting ShortTime from DateTime // using ToShortTimeString() method; string value = date.ToShortTimeString(); // Display the ShortTime Console.WriteLine("ShortTime of {0}"+ " is {1}", date, value); } }
Producción:
ShortTime of 01/03/2010 04:00:15 is 04:00 ShortTime of 01/05/2010 04:00:15 is 04:00
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