AssemblyCSharp.StringUtils.GetFormattedTime C# (CSharp) Метод

GetFormattedTime() публичный статический Метод

public static GetFormattedTime ( int totalSeconds, bool withLetters = true ) : string
totalSeconds int
withLetters bool
Результат string
        public static string GetFormattedTime(int totalSeconds, bool withLetters = true)
        {
            return withLetters ? GetFormattedTime(TimeSpan.FromSeconds(totalSeconds)) : GetFormattedTimeWithoutLetters(TimeSpan.FromSeconds(totalSeconds));
        }

Same methods

StringUtils::GetFormattedTime ( System.TimeSpan timeSpan ) : string