gpt4 book ai didi

C# : How to get number of days from an object of DateTime

转载 作者:行者123 更新时间:2023-12-04 12:44:21 25 4
gpt4 key购买 nike

在 C# 中,如何找到驻留在 DateTime 对象中的一个月中的天数。

前任 :

DateTime objDate=new DateTime();

使用 objDate,现在我想获取当月的天数。 C# 中是否存在任何内置函数?

闰年也要注意

最佳答案

int noOfDays = DateTime.DaysInMonth(objDate.Year, objDate.Month);

关于C# : How to get number of days from an object of DateTime,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1672893/

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