Метод DateTime.ToShortDateString () в C #
Опубликовано: 7 Марта, 2022
Этот метод используется для преобразования значения текущего объекта DateTime в эквивалентное ему короткое строковое представление даты.
Syntax: public string ToShortDateString ();
Return Value: This method returns a string that contains the short date string representation of the current DateTime object.
Ниже приведены программы, иллюстрирующие использование метода DateTime.ToShortDateString () :
Пример 1:
Example 2:
// C# program to demonstrate the // DateTime.ToShortDateString() // Method using System; 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)); check( new DateTime(2010, 1, 5, 4, 0, 15)); } public static void check(DateTime date) { // getting ShortTime from DateTime // using ToShortDateString() method; string value = date.ToShortDateString(); // Display the date Console.WriteLine( "date of {0} is " + "{1}" , date, value); } } |
Output:
date of 01/03/2010 04:00:15 is 01/03/2010 date of 01/05/2010 04:00:15 is 01/05/2010 date of 01/05/2010 04:00:15 is 01/05/2010
Ссылка:
- https://docs.microsoft.com/en-us/dotnet/api/system.datetime.toshortdatestring?view=netframework-4.7.2