c#获取当前年和月例如2023年1月为23年1月
时间: 2024-04-30 11:21:25 浏览: 94
可以使用DateTime.Now属性获取当前日期和时间,然后使用ToString方法指定格式化字符串来获取到所需的年月信息。
下面是一个示例代码:
DateTime now = DateTime.Now;
string yearMonth = now.ToString("yy年M月");
Console.WriteLine(yearMonth);
输出结果为:23年1月