將秒轉換為(小時:分鐘:秒:毫秒)時間
要將秒轉換為格式化時間字串,請考慮以下解決方案:
對於.NET
利用TimeSpan 類別:
TimeSpan t = TimeSpan.FromSeconds(secs); string answer = string.Format("{0:D2}h:{1:D2}m:{2:D2}s:{3:D3}ms", t.Hours, t.Minutes, t.Seconds, t.Milliseconds);
對於.NET > 4.0:
使用帶有自訂格式字串的TimeSpan類別:
TimeSpan time = TimeSpan.FromSeconds(seconds); // backslash is essential to indicate that colon is not part of the format string str = time.ToString(@"hh\:mm\:ss\:fff");
重要說明:
以上是如何在 .NET 中將秒轉換為 HH:MM:SS:FFF 時間格式?的詳細內容。更多資訊請關注PHP中文網其他相關文章!