当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


C# DateTime.ToShortTimeString()用法及代码示例


此方法用于将当前DateTime对象的值转换为其等效的短时间字符串表示形式。

用法: public string ToShortTimeString ();

返回值:此方法返回一个字符串,其中包含当前DateTime对象的短时间字符串表示形式。


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

示例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); 
        } 
    } 
}
输出:
ShortTime is 04:00

示例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); 
    } 
}
输出:
ShortTime of 01/03/2010 04:00:15 is 04:00
ShortTime of 01/05/2010 04:00:15 is 04:00

参考:



相关用法


注:本文由纯净天空筛选整理自RohitPrasad3大神的英文原创作品 DateTime.ToShortTimeString() Method in C#。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。