display timespan nicely

前端 未结 4 2237
心在旅途
心在旅途 2021-02-19 01:48

Excuse the rough code, I\'m trying to display the duration of videos given the time in seconds. I\'ve had a go below but it\'s not working properly.

I want it to just d

4条回答
  •  温柔的废话
    2021-02-19 02:42

    According to msdn try this:

    if (secs < 60)
    {
        answer = t.Format("s");
    }
    else if (secs < 600)//tenmins
    {
        answer = t.Format("m:s");
    }
    // ...
    

提交回复
热议问题