C# DateTime 每个月的最后 1 天 [关闭]
Posted
技术标签:
【中文标题】C# DateTime 每个月的最后 1 天 [关闭]【英文标题】:C# DateTime The last 1 days of each month [closed] 【发布时间】:2017-05-11 12:11:57 【问题描述】:昨天。在这里,我们从当天减去一天。我们通过在当天添加 -1 来做到这一点。这是必要的,因为没有提供“减去天数”方法。 笔记: 该示例是几年前运行的。输出自然会根据您运行它的日期而有所不同。 和: DateTime.Today 始终设置为机器的本地时间,具体取决于当前系统。
【问题讨论】:
你的问题是? 在发帖之前花点时间阅读help center,尤其是How to Ask 【参考方案1】:public DateTime GetLastDayOfMonth(int year, int month)
month += 1;
if (month>12)
month = 1;
return new DateTime(year, month, 1).AddDays(-1);
【讨论】:
以上是关于C# DateTime 每个月的最后 1 天 [关闭]的主要内容,如果未能解决你的问题,请参考以下文章