SunsetHigh.GameClock.formatTimeSpan C# (CSharp) Method

formatTimeSpan() public static method

public static formatTimeSpan ( ClockSave total ) : string
total ClockSave
return string
        public static string formatTimeSpan(ClockSave total)
        {
            return String.Format("{0:00}:{1:00}:{2:00}", (total.hours), total.minutes, total.seconds);
        }

Same methods

GameClock::formatTimeSpan ( System.TimeSpan total ) : string