C#中的年月(“ Y”)格式说明符

年月格式说明符表示自定义日期和时间格式字符串。

它由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