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
广告