我正在寻找在.NET 3.5我写了下面的工作解决方案的解决方案:
private string FormatTimeSpan(TimeSpan time)
{
return String.Format("{0}{1:00}:{2:00}", time < TimeSpan.Zero ? "-" : "", Math.Abs(time.Minutes), Math.Abs(time.Seconds));
}
但我的问题是:有没有更好的办法? 也许更短的东西,我并不需要一个辅助函数。