gpt4 book ai didi

c# - 如何将秒数转换成(年份:Month:Day Hour:Minutes:Seconds) time?

转载 作者:行者123 更新时间:2023-11-30 14:30:23 25 4
gpt4 key购买 nike

将秒转换为(年:月:日时:分:秒)时间的最佳方法是什么?

假设我有 959040000 秒(1 年 5 个月),.NET 中是否有任何专门的类(class)/技术可以让我将这 959040000 秒转换为(年:月:日时:分:秒),例如日期时间之类的?

最佳答案

使用 TimeSpan 类:

var ts = new TimeSpan(0, 0, 959040000);
int days = ts.Days;
int years = days / 365;
....

关于c# - 如何将秒数转换成(年份:Month:Day Hour:Minutes:Seconds) time?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23026148/

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