Remove hours:seconds:milliseconds in DateTime object

前端 未结 9 2127
忘了有多久
忘了有多久 2021-01-17 09:43

I\'m trying to create a string from the DateTime object which yields the format mm:dd:yyyy.

Conventionally the DateTime object comes as

9条回答
  •  悲哀的现实
    2021-01-17 10:33

    DateTime date1 = new DateTime(2008, 6, 1, 7, 47, 0);
    Console.WriteLine(date1.ToString());
    
    // Get date-only portion of date, without its time.
    DateTime dateOnly = date1.Date;
    // Display date using short date string.
    Console.WriteLine(dateOnly.ToString("d"));
    // Display date using 24-hour clock.
    Console.WriteLine(dateOnly.ToString("g"));
    Console.WriteLine(dateOnly.ToString("MM/dd/yyyy HH:mm"));   
    // The example displays the following output to the console:
    //       6/1/2008 7:47:00 AM
    //       6/1/2008
    //       6/1/2008 12:00 AM
    //       06/01/2008 00:00
    

    http://msdn.microsoft.com/en-us/library/system.datetime.date.aspx

提交回复
热议问题