作者热门文章
- c - 在位数组中找到第一个零
- linux - Unix 显示有关匹配两种模式之一的文件的信息
- 正则表达式替换多个文件
- linux - 隐藏来自 xtrace 的命令
如果我有一个 DateTime
,例如 2012-05-24
,将它转换为最后一天日期的最快方法是什么当月 (2012-05-31
)。
最佳答案
你可以使用:
DateTime date = ...;
var endOfMonth = new DateTime(date.Year, date.Month,
DateTime.DaysInMonth(date.Year, date.Month));
请注意,这将创建一个DateTime
,其Kind
为Unspecified
。您应该考虑您真正想要的 Kind
。 (或者使用我的 Noda Time 库,您可以在其中使用 LocalDate
。)
关于c# - 如何将 DateTime 转换为该月的最后一天?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18349830/
我是一名优秀的程序员,十分优秀!