我需要为我的项目申请一个条件,我需要将当前月份的最后日期与该字段中选择的月份进行比较,如果他们当前月份的最后日期超过1个月,则根据选定的月份然后会显示错误。 谁能帮帮我吗???
答案 0 :(得分:0)
DateTime now = DateTime.Now;
DateTime firstOfThisMonth = now.AddDays(-now.Days+1);
DateTime firstOfNextMonth = firstOfThisMonth.AddMonths(1);
DateTime endOfThisMonth = firstOfNextMonth.AddDays(-1);
现在,您可以将endOfThisMonth
与所选月份进行比较。