对象获取一个月的第一天和最后一天

对象获取一个月的第一天和最后一天

本文介绍了使用给定的 DateTime 对象获取一个月的第一天和最后一天的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我想获取给定日期所在月份的第一天和最后一天.日期来自 UI 字段中的值.

I want to get the first day and last day of the month where a given date lies in. The date comes from a value in a UI field.

如果我使用的是时间选择器,我可以说

If I'm using a time picker I could say

var maxDay = dtpAttendance.MaxDate.Day;

但我试图从 DateTime 对象中获取它.所以如果我有这个...

But I'm trying to get it from a DateTime object. So if I have this...

DateTime dt = DateTime.today;

如何从dt获取当月的第一天和最后一天?

How to get first day and last day of the month from dt?

推荐答案

DateTime 结构只存储一个值,而不是值的范围.MinValueMaxValue 是静态字段,它们保存 DateTime 结构实例的可能值范围.这些字段是静态的,与 DateTime 的特定实例无关.它们与 DateTime 类型本身有关.

DateTime structure stores only one value, not range of values. MinValue and MaxValue are static fields, which hold range of possible values for instances of DateTime structure. These fields are static and do not relate to particular instance of DateTime. They relate to DateTime type itself.

建议阅读:static(C# 参考)

更新:获取月份范围:

DateTime date = ...
var firstDayOfMonth = new DateTime(date.Year, date.Month, 1);
var lastDayOfMonth = firstDayOfMonth.AddMonths(1).AddDays(-1);

这篇关于使用给定的 DateTime 对象获取一个月的第一天和最后一天的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-27 16:56