C#中的长时间(“ T”)格式说明符

Long Time格式说明符表示一个自定义的日期和时间格式字符串。

它由DateTimeFormatInfo.LongTimePattern属性定义。

自定义格式字符串。

HH:mm:ss

示例

using System;

using System.Globalization;

class Demo {

   static void Main() {

      DateTime date = new DateTime(2018, 9, 9, 8, 15, 30);

      Console.WriteLine(date.ToString("T", CultureInfo.CreateSpecificCulture("en-us")));

   }

}

输出结果

8:15:30 AM

以上是 C#中的长时间(“ T”)格式说明符 的全部内容, 来源链接: utcz.com/z/321848.html

回到顶部