短日期(“ d”)格式说明符
“ d”格式说明符表示自定义日期和时间格式字符串。
格式字符串由区域性的DateTimeFormatInfo.ShortDatePattern属性定义。
自定义格式字符串为-
MM/dd/yyyy
示例
using System;using System.Globalization;
class Demo {
static void Main() {
DateTime myDate = new DateTime(2018,9, 09);
Console.WriteLine(myDate.ToString("d", DateTimeFormatInfo.InvariantInfo));
Console.WriteLine(myDate.ToString("d", CultureInfo.CreateSpecificCulture("en-US")));
}
}
输出结果
09/09/20189/9/2018
以上是 短日期(“ d”)格式说明符 的全部内容, 来源链接: utcz.com/z/327110.html