PC-20230316NUNE\Administrator b0a2e4a900 提交完美
2024-10-17 20:36:24 +08:00

13 lines
299 B
C#

using System;
namespace JNGame.Runtime.Util
{
public class TimeUtil
{
public static string FormatSecond(int totalSeconds,string format)
{
TimeSpan timeSpan = TimeSpan.FromSeconds(totalSeconds);
return timeSpan.ToString(format);
}
}
}