gpt4 book ai didi

c# - 如何从财政年度的月末值计算财政年度的开始和结束日期?

转载 作者:太空宇宙 更新时间:2023-11-03 19:30:55 24 4
gpt4 key购买 nike

我有一个财政年度的月末值 2

我如何根据该值计算财政年度 DateTime startDateDateTime endDate

最佳答案

你可以这样做:

DateTime startDate = new DateTime(DateTime.Today.Year, 2, 1); // 1st Feb this year
DateTime endDate = new DateTime(DateTime.Today.Year+1, 2, 1).AddDays(-1); // Last day in January next year

这是否解决了您的问题?

关于c# - 如何从财政年度的月末值计算财政年度的开始和结束日期?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5049562/

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