C#将秒数转化为时分秒格式00:00:00
//将秒数转化为时分秒
private string sec_to_hms(long duration)
{
TimeSpan ts = new TimeSpan(0, 0, Convert.ToInt32(duration));
string str = "";
if (ts.Hours > 0)
{
str = String.Format("{0:00}", ts.Hours)+":"+ String.Format("{0:00}", ts.Minutes) + ":" + String.Format("{0:00}", ts.Seconds);
}
if (ts.Hours == 0 && ts.Minutes > 0)
{
str = "00:"+ String.Format("{0:00}", ts.Minutes)+":" + String.Format("{0:00}", ts.Seconds);
}
if (ts.Hours == 0 && ts.Minutes == 0)
{
str = "00:00:" + String.Format("{0:00}",ts.Seconds);
}
return str;
}
结果为:

00:00:10

00:01:10

03:01:10等
https://blog.csdn.net/qq_16687863/article/details/101035803

================================================================

private string GetHMSTime(float time)
{
float h = Mathf.FloorToInt(time / 3600f);
float m = Mathf.FloorToInt(time / 60f - h * 60f);
float s = Mathf.FloorToInt(time - m * 60f - h * 3600f);
return h.ToString("00") + ":" + m.ToString("00") + ":" + s.ToString("00");
}
https://blog.csdn.net/RocketJ/article/details/113503161

相关文章:

  • 2021-09-12
  • 2021-10-02
  • 2021-09-19
  • 2021-12-26
  • 2022-02-08
  • 2021-12-26
  • 2022-12-23
  • 2022-12-23
猜你喜欢
  • 2021-12-06
  • 2022-02-07
  • 2021-11-18
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-11-26
相关资源
相似解决方案