C#毫秒转时分秒格式
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了C#毫秒转时分秒格式相关的知识,希望对你有一定的参考价值。
private string RevertToTime(int l)//转换为时分秒格式
{
string str = "";
int hour = 0;
int minute = 0;
int second = 0;
second = l / 1000;
if (second > 60)
{
minute = second / 60;
second = second % 60;
}
if (minute > 60)
{
hour = minute / 60;
minute = minute % 60;
}
return (hour.ToString() + ":" + minute.ToString() + ":"
+ second.ToString());
}
以上是关于C#毫秒转时分秒格式的主要内容,如果未能解决你的问题,请参考以下文章