gpt4 book ai didi

.net - .NET 中每月的最后一天

转载 作者:行者123 更新时间:2023-12-03 08:50:58 24 4
gpt4 key购买 nike

通常我使用下面的代码,但有更好的方法吗?

lastOfMonth = new DateTime(Now.Year, Now.Month, 1).AddMonths(1).AddDays(-1)

最佳答案

我用

DateTime now = DateTime.Today;
var lastDate = new DateTime(now.Year, now.Month, DateTime.DaysInMonth(now.Year, now.Month));

关于.net - .NET 中每月的最后一天,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2412977/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com