TimeSpan ts = new TimeSpan(0, 0,Convert.ToInt32( duration));
string str = "";
if (ts.Hours > 0)
{
str = ts.Hours.ToString() + "小时 "+ts.Minutes.ToString()+"分钟 "+ts.Seconds+"秒";
}
if (ts.Hours == 0&&ts.Minutes>0)
{
str = ts.Minutes.ToString() + "分钟 " + ts.Seconds + "秒";
}
if (ts.Hours == 0&&ts.Minutes==0)
{
str = ts.Seconds + "秒";
}
return str;
c# 将秒数转换成时,分,秒的方法
原文作者:王翼鹏
原文地址: https://blog.csdn.net/zghnpdswyp/article/details/50463898
本文转自网络文章,转载此文章仅为分享知识,如有侵权,请联系博主进行删除。
原文地址: https://blog.csdn.net/zghnpdswyp/article/details/50463898
本文转自网络文章,转载此文章仅为分享知识,如有侵权,请联系博主进行删除。