如何将秒转换为时:分:秒 ?比如70秒,如何将70秒转换成 00:01:10 (小时:分钟:秒) ? [解决办法]
TimeSpan ts = new TimeSpan(0, 0, 0, 70); string res = ts.ToString();