C# 程序获取时间的绝对值


要获取时间的绝对值,请使用 TimesSpan Duration() 方法。

假设我们有以下 TimeSpan。

TimeSpan ts = new TimeSpan(-7, -50, -25);

现在获取绝对值。

TimeSpan duration = ts.Duration();

让我们看看完整的代码。

示例

 在线演示

using System;
using System.Linq;
public class Demo {
   public static void Main() {
      TimeSpan ts = new TimeSpan(-7, -50, -25);
      TimeSpan duration = ts.Duration();
      Console.WriteLine(duration);
   }
}

输出

07:50:25

更新日期:2020-06-23

已查看 855 次

开启你的 职业生涯

完成课程,获取认证

开始学习
广告