Format TimeSpan to mm:ss for positive and negative TimeSpans

后端 未结 2 1749
猫巷女王i
猫巷女王i 2021-02-20 04:11

I\'m looking for a solution in .net 3.5 I wrote the following working solution:

private string FormatTimeSpan(TimeSpan time)
{
    return String.Format(\"{0}{1:0         


        
2条回答
  •  鱼传尺愫
    2021-02-20 04:48

    Somewhat shorter, using Custom TimeSpan Format Strings:

    private string FormatTimeSpan(TimeSpan time)
    {
        return ((time < TimeSpan.Zero) ? "-" : "") + time.ToString(@"mm\:ss");
    }
    

提交回复
热议问题