C# 中生成当前月份


要显示当前月份,首先使用 “Now“ 获取当前日期。

DateTime dt = DateTime.Now;

现在,使用 Month 属性获取当前月份。

dt.Month

让我们看看完整的代码。

示例

 在线演示

using System;
using System.Linq;
public class Demo {
   public static void Main() {
      DateTime dt = DateTime.Now;
      Console.WriteLine(dt.Month);
   }
}

输出

9

要显示当前月份的名称。

示例

 在线演示

using System;
using System.Linq;
public class Demo {
   public static void Main() {
      DateTime dt = DateTime.Now;
      Console.WriteLine(dt.ToString("MMM"));
   }
}

输出

Sep

更新于: 2020 年 6 月 23 日

10K+ 次查看

开启你的职业生涯

完成课程即可获得认证

开始
广告