年份月份(“Y”)C#中的格式说明符
年份月份格式说明符代表一种自定义日期和时间格式字符串。
它由 DateTimeFormatInfo.YearMonthPattern 属性定义。
以下是自定义格式字符串。
yyyy MMMM
示例
using System; using System.Globalization; class Demo { static void Main() { DateTime date = new DateTime(2018, 9, 7, 7, 55, 20); Console.WriteLine(date.ToString("Y",CultureInfo.CreateSpecificCulture("en-US"))); } }
输出
September 2018
广告