當前位置: 首頁>>編程示例 >>用法及示例精選 >>正文


C# DateTime.ToShortDateString()用法及代碼示例

此方法用於將當前DateTime對象的值轉換為其等效的短日期字符串表示形式。

用法: public string ToShortDateString ();

返回值:此方法返回一個字符串,其中包含當前DateTime對象的短日期字符串表示形式。


以下示例程序旨在說明DateTime.ToShortDateString()方法的使用:

示例1:

// C# program to demonstrate the 
// DateTime.ToShortDateString() 
// Method 
using System; 
  
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 ToShortDateString() method; 
            string value = date.ToShortDateString(); 
  
            // Display the ShortTime 
            Console.WriteLine("date is {0}", value); 
        } 
  
        catch (FormatException e)  
        { 
            Console.Write("Exception Thrown: "); 
            Console.Write("{0}", e.GetType(), e.Message); 
        } 
    } 
}
輸出:
date is 01/01/2010

示例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); 
    } 
}
輸出:
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

參考:



相關用法


注:本文由純淨天空篩選整理自RohitPrasad3大神的英文原創作品 DateTime.ToShortDateString() Method in C#。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。