C#中的短时(“ t”)格式说明符
短时间格式说明符表示自定义日期和时间格式字符串。
它由当前的DateTimeFormatInfo.ShortTimePattern属性定义。
例如,自定义格式字符串为-
HH:mm
示例
using System; using System.Globalization; class Demo { static void Main() { DateTime date = new DateTime(2018, 5, 4, 10, 12, 10); Console.WriteLine(date.ToString("t", CultureInfo.CreateSpecificCulture("en-us"))); } }
输出结果
10:12 AM