AK.F1.Timing.Utility.Tms.Operations.Format.SectorTime C# (CSharp) Method

SectorTime() public static method

public static SectorTime ( PostedTime value ) : string
value PostedTime
return string
        public static string SectorTime(PostedTime value)
        {
            if(value == null)
            {
                return String.Empty;
            }

            TimeSpan time = value.Time;

            return F("{0}.{1:0}", time.Minutes * 60 + time.Seconds, time.Milliseconds / 100);
        }