我有一个Timespan,我需要以特定的格式输出,如下所示: -
TimeSpan TimeDifference = DateTime.Now - RandomDate;
我正在格式化TimeSpan: -
string result = string.Format(@"{0:hh\:mm\:ss}", TimeDifference);
结果将如下所示: -
“00:16:45.6184635”
如何将这些秒数舍入到0位小数?
Expected Result = 00:16:46
由于
答案 0 :(得分:11)
您的代码适用于.NET 4但不适用于3.5,因为4上有一个重大更改,TimeSpan
现在实现了IFormattable
(见下文)。
您可以在3.5或更低版本上执行的操作是,将TimeSpan
转换为DateTime
并使用ToString
:
DateTime dtime = DateTime.MinValue.Add(TimeDifference);
string result = dtime.ToString(@"hh\:mm\:ss");
在这里,您可以看到非工作+工作版本:http://ideone.com/Ak1HuD
修改我认为它有时有效且有时无效的原因是since .NET 4.0 TimeSpan
实现了IFormattable
seem to be used by String.Format
。
答案 1 :(得分:6)
您的代码应该可以正常运行(删除次要语法错误后)。请考虑以下示例:
TimeSpan TimeDifference = DateTime.Now - DateTime.Now.AddHours(-6);
string result = string.Format(@"{0:hh\:mm\:ss}", TimeDifference);
Console.WriteLine("TimeSpan: {0}", TimeDifference.ToString());
Console.WriteLine("Formatted TimeSpan: {0}", result);
输出:
TimeSpan: 05:59:59.9990235
Formatted TimeSpan: 05:59:59
答案 2 :(得分:4)
对我来说很好。
例如,这个程序:
using System;
namespace Demo
{
public static class Program
{
private static void Main(string[] args)
{
DateTime then = new DateTime(2013, 1, 30, 0, 1, 3);
TimeSpan ts = DateTime.Now - then;
Console.WriteLine(ts.ToString());
Console.WriteLine(ts.ToString(@"hh\:mm\:ss"));
Console.WriteLine(string.Format(@"{0:hh\:mm\:ss}", ts));
// Or, with rounding:
TimeSpan rounded = TimeSpan.FromSeconds((int)(0.5 + ts.TotalSeconds));
Console.WriteLine(rounded.ToString(@"hh\:mm\:ss"));
}
}
}
输出类似:
1.09:20:22.5070754
09:20:22
09:20:22
09:20:23 <- Note rounded up to :23