如何从 Date 对象中减去月份?
如何从 VB.NET 中的日期对象中减去月份?
我已经尝试过:
Today.AddMonths(-1)
但是,鉴于今天是 2010 年 1 月 1 日,我得到的结果是 2010 年 12 月 1 日。我想要的答案是 2009 年 12 月 1 日。
在 .NET 框架中是否有一种方便的方法来执行此操作?
How do I subtract a month from a date object in VB.NET?
I have tried:
Today.AddMonths(-1)
However, given that Today is 01-Jan-2010, the result I get is 01-Dec-2010. The answer I want is 01-Dec-2009.
Is there a convenient way of doing this within the .NET framework?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
实际上,您必须将 Today 传输到一个变量中,并让该赋值在那里起作用。以下代码将产生您期望的结果(我刚刚验证了它,因为您的帖子让我三思而后行)。
You actually have to transport Today into a variable and let that assignment work there. The following code will produce the result you expect (I just verified it because your post made me think twice).
这很好用,您需要记住 DateTime 是不可变的。
查看日期时间结构
This works fine, you need to remember that the DateTime is imutable.
Have a look at DateTime Structure
我已经使用了以下内容并且有效。
I have used the following and it works.