摘要: /// /// 转换成时间 00:00:00/// /// /// public string time(long duration){ TimeSpan t = new TimeSpan(0, 0, Convert.ToInt32(duration)); //string str = "00:00:00"; return $"{t.Hours:00}:{t.Minutes:... 阅读全文
posted @ 2020-01-11 17:02 XE2011 阅读(1108) 评论(0) 推荐(1) 编辑