gpt4 book ai didi

c# - 如何从一年中的某一天获取日期

转载 作者:可可西里 更新时间:2023-11-01 08:55:12 24 4
gpt4 key购买 nike

如何在 C# 中从 day of year 获取 date

我有这段代码:

int a = 53;   // This is the day of year value, that I got previously
string b = Convert.ToDateTime(a).ToString(); // Trying to get the date

我需要获取值 22.2.2014。但这不起作用,我该怎么办?提前致谢。

最佳答案

int dayOfYear = 53;
int year = DateTime.Now.Year; //Or any year you want
DateTime theDate = new DateTime(year, 1, 1).AddDays(dayOfYear - 1);
string b = theDate.ToString("d.M.yyyy"); // The date in requested format

关于c# - 如何从一年中的某一天获取日期,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21960499/

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